Created
March 15, 2019 16:57
-
-
Save DevCodo/bc1729d4d8dabd13bfee93c918737b80 to your computer and use it in GitHub Desktop.
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
| if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) { | |
| // код для мобильных устройств | |
| } else { | |
| // код для обычных устройств | |
| } | |
| // Проверить есть ли поддержка touch евентов | |
| function is_touch_device() { | |
| return !!('ontouchstart' in window); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment