Skip to content

Commit

Permalink
Merge pull request #794 from camilledalmeras/master
Browse files Browse the repository at this point in the history
Updated user-agent sniffing for IE10 support
  • Loading branch information
anthonyrisinger committed May 13, 2013
2 parents aa0adab + 1b964a9 commit 6f41853
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builder/boilerplate/home.nocache.html
Expand Up @@ -22,6 +22,9 @@
}
else if (ua.indexOf('msie 9.0') != -1) {
return 'ie6';
}
else if (ua.indexOf('msie 10.0')) != -1 {
return 'ie6';
}
else if (ua.indexOf('mozilla') != -1) {
var geckoIdx = ua.indexOf('gecko/');
Expand Down
3 changes: 3 additions & 0 deletions pyjs/src/pyjs/boilerplate/home.nocache.html
Expand Up @@ -25,6 +25,9 @@
}
else if (ua.indexOf('msie 9.0') != -1) {
return 'ie6';
}
else if (ua.indexOf('msie 10.0') != -1) {
return 'ie6';
}
else if (ua.indexOf('mozilla') != -1) {
var geckoIdx = ua.indexOf('gecko/');
Expand Down

0 comments on commit 6f41853

Please sign in to comment.