Created
November 27, 2019 04:10
-
-
Save doxas/45dfd83fc79178e9c7ef88a5fb58d0d6 to your computer and use it in GitHub Desktop.
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
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