Last active
August 29, 2015 14:24
-
-
Save flovilmart/547ebe66e56360889473 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
function isMobile() { | |
var ua = navigator.userAgent.toLowerCase(); | |
var isAndroid = ua.indexOf("android") > -1; | |
var isiPhone = ua.indexOf("iphone") > -1; | |
var isiPod = ua.indexOf("ipod") > -1; | |
return (isAndroid || isiPhone || isiPod); | |
} | |
// In the callback | |
if(isMobile()) { | |
window.location.href = caption.get("spotrURL"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment