We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 45d8e1b + d3ea857 commit d54b03bCopy full SHA for d54b03b
src/synthetic.js
@@ -11,7 +11,8 @@ var extend = function (d, s) {
11
},
12
// only uses browser detection for key events
13
browser = {
14
- msie: !! (window.attachEvent && !window.opera),
+ //msie: !! (window.attachEvent && !window.opera),
15
+ msie: (!!(window.attachEvent && !window.opera) || (navigator.userAgent.indexOf('Trident/') > -1)),
16
opera: !! window.opera,
17
webkit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
18
safari: navigator.userAgent.indexOf('AppleWebKit/') > -1 && navigator.userAgent.indexOf('Chrome/') === -1,
0 commit comments