Skip to content

Instantly share code, notes, and snippets.

@naosim
Created April 11, 2017 07:34
Show Gist options
  • Save naosim/f321525b56bfe2fa5e318c35220ca43a to your computer and use it in GitHub Desktop.
Save naosim/f321525b56bfe2fa5e318c35220ca43a to your computer and use it in GitHub Desktop.
isMac
// 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