Created
July 27, 2014 10:07
-
-
Save maxmalakhov/84e3c1119ce669547391 to your computer and use it in GitHub Desktop.
Check if the Donkey is coming
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
function isIE() { | |
var na = navigator, ua = na.userAgent; | |
return !/WebKit/.test(ua) && (/MSIE/gi).test(ua) && (/Explorer/gi).test(na.appName); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment