Created
April 11, 2017 07:34
-
-
Save naosim/f321525b56bfe2fa5e318c35220ca43a to your computer and use it in GitHub Desktop.
isMac
This file contains hidden or 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
// Mac | |
var ua = navigator.userAgent.toLowerCase(); | |
var isMac = ((ua.indexOf('mac') > -1) && (ua.indexOf('os') > -1)) && !((ua.indexOf('iphone') > -1) || (ua.indexOf('ipad') > -1) || (ua.indexOf('windows') > -1)); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment