Created
November 1, 2017 21:22
-
-
Save timbornholdt/b79b415ea96645bf76c2a67b8940a9b9 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
var operatingSystem, userAgentString = navigator.userAgent; | |
if (userAgentString.indexOf("iPhone") > -1 || userAgentString.indexOf("iPod") > -1 || userAgentString.indexOf("iPad") > -1) { | |
window.location = ""; // URL for iOS devices | |
} else if (/Android/.test(userAgentString)) { | |
window.location = ""; // URL for Android devices | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment