Created
February 26, 2015 00:37
-
-
Save rex/ff04ecaf488bbeffcc88 to your computer and use it in GitHub Desktop.
Super, dead simple browser & platform detection. Found on this awesome blog post: http://davidlesches.com/blog/making-browsers-play-nice-with-thin-fonts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ -> | |
is_chrome = navigator.userAgent.indexOf('Chrome') > -1 | |
is_explorer = navigator.userAgent.indexOf('MSIE') > -1 | |
is_firefox = navigator.userAgent.indexOf('Firefox') > -1 | |
is_safari = navigator.userAgent.indexOf("Safari") > -1 | |
is_opera = navigator.userAgent.indexOf("Presto") > -1 | |
is_mac = (navigator.userAgent.indexOf('Mac OS') != -1) | |
is_windows = !is_mac | |
if is_chrome && is_safari | |
is_safari=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment