Skip to content

Commit

Permalink
Merge pull request #237 from danshultz/ie-11-gecko-browser-fix
Browse files Browse the repository at this point in the history
fix Browser.is.Gecko to ensure not IE
  • Loading branch information
joseph committed Feb 17, 2014
2 parents ae848e7 + 916a7b5 commit 174a253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compat/browser.js
Expand Up @@ -19,7 +19,7 @@ Monocle.Browser.is = {
), ),
Opera: Monocle.Browser.uaMatch('Opera'), Opera: Monocle.Browser.uaMatch('Opera'),
WebKit: Monocle.Browser.uaMatch(/Apple\s?WebKit/), WebKit: Monocle.Browser.uaMatch(/Apple\s?WebKit/),
Gecko: Monocle.Browser.uaMatch('Gecko') && !Monocle.Browser.uaMatch('KHTML'), Gecko: Monocle.Browser.uaMatch(/Gecko\//),
MobileSafari: Monocle.Browser.uaMatch(/OS \d_.*AppleWebKit.*Mobile/) MobileSafari: Monocle.Browser.uaMatch(/OS \d_.*AppleWebKit.*Mobile/)
} }


Expand Down

0 comments on commit 174a253

Please sign in to comment.