Created
April 11, 2016 03:54
-
-
Save syousif94/2904df0d9e5f17bb915de4a5a5df74fc 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
| export let iOS = (navigator.userAgent.indexOf('iPhone OS') > -1) || (navigator.userAgent.indexOf('iPad') > -1) | |
| export let android = navigator.userAgent.indexOf('Android') > -1 | |
| export let windowsPhone = navigator.userAgent.indexOf('Windows Phone') > -1 | |
| export let mobile = iOS || android || windowsPhone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment