diff options
Diffstat (limited to 'konami/js')
| -rw-r--r-- | konami/js/main.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/konami/js/main.js b/konami/js/main.js index 9ffed54..5cf2f46 100644 --- a/konami/js/main.js +++ b/konami/js/main.js @@ -19,10 +19,19 @@ function Scroll() { } Scroll(); +/* // CHECKS IF USER IS ON MOBILE if (screen.width <= 480) { location.href = '/mobile'; } +*/ + +// THIS CHECKS WHAT OS THE USER IS ON +// This is a old variation so don't use this. +// Using it because this way you can use Chrome's "Request Desktop Site" feature. +if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) { + location.href = '/mobile/'; +} // KONAMI CODE FOR TOASTY |