File size: 648 Bytes
1e40c2a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
if (/bot|crawler|spider|crawling/i.test(userAgent)) {
// do nothing
}
// Windows Phone
else if (/windows phone/i.test(userAgent)) {
// window.location.replace("/mobile");
}
// Android
else if (/android/i.test(userAgent)) {
// window.location.replace("https://play.google.com/store/apps/details?id=lol.onevone");
}
// iOS
else if ((/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) || (navigator.maxTouchPoints && navigator.maxTouchPoints > 2 && /MacIntel/.test(navigator.platform))) {
// window.location.replace("https://apps.apple.com/app/id1508620125");
} |