Skip to content

Instantly share code, notes, and snippets.

@doxas
Created November 27, 2019 04:10
Show Gist options
  • Save doxas/45dfd83fc79178e9c7ef88a5fb58d0d6 to your computer and use it in GitHub Desktop.
Save doxas/45dfd83fc79178e9c7ef88a5fb58d0d6 to your computer and use it in GitHub Desktop.
let isMobileDevice = (
ua.indexOf('android') > -1 ||
ua.indexOf('iphone') > -1 ||
ua.indexOf('ipod') > -1 ||
ua.indexOf('ipad') > -1 ||
(ua.indexOf('macintosh') > -1 && 'ontouchend' in document)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment