From 6525c082f4f9da365d17a29aee3c4525280d7f05 Mon Sep 17 00:00:00 2001 From: s1nical Date: Fri, 23 Aug 2019 05:31:10 -0700 Subject: mobile redir to use useragrent instead screenwidth --- wolf3d/js/main.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'wolf3d/js/main.js') diff --git a/wolf3d/js/main.js b/wolf3d/js/main.js index 5807029..04584f0 100644 --- a/wolf3d/js/main.js +++ b/wolf3d/js/main.js @@ -1,4 +1,13 @@ +/* // 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/'; } \ No newline at end of file -- cgit v1.2.3