Created
May 7, 2015 18:11
-
-
Save LayneSmith/4ae833e77bd9496f9f04 to your computer and use it in GitHub Desktop.
if isMobile
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
| function is_touch_device() { | |
| return 'ontouchstart' in window || 'onmsgesturechange' in window; | |
| }; | |
| var isMobile = is_touch_device(); | |
| if (isMobile){ | |
| }else{ | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment