Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/bitovi/syn
Browse files Browse the repository at this point in the history
  • Loading branch information
kdillon committed Jun 8, 2017
2 parents 45d8e1b + d3ea857 commit d54b03b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/synthetic.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ var extend = function (d, s) {
},
// only uses browser detection for key events
browser = {
msie: !! (window.attachEvent && !window.opera),
//msie: !! (window.attachEvent && !window.opera),
msie: (!!(window.attachEvent && !window.opera) || (navigator.userAgent.indexOf('Trident/') > -1)),
opera: !! window.opera,
webkit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
safari: navigator.userAgent.indexOf('AppleWebKit/') > -1 && navigator.userAgent.indexOf('Chrome/') === -1,
Expand Down

0 comments on commit d54b03b

Please sign in to comment.