diff options
| author | s1nical <[email protected]> | 2019-08-23 05:31:10 -0700 |
|---|---|---|
| committer | s1nical <[email protected]> | 2019-08-23 05:31:10 -0700 |
| commit | 6525c082f4f9da365d17a29aee3c4525280d7f05 (patch) | |
| tree | e2187482df3ecfddf3e74b08ff0166cdae4220b5 /404/js | |
| parent | update s1nical to 8cy (diff) | |
| download | s1n.pw-admin-6525c082f4f9da365d17a29aee3c4525280d7f05.tar.xz s1n.pw-admin-6525c082f4f9da365d17a29aee3c4525280d7f05.zip | |
mobile redir to use useragrent instead screenwidth
Diffstat (limited to '404/js')
| -rw-r--r-- | 404/js/main.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/404/js/main.js b/404/js/main.js index 2f18f0d..f36bbf1 100644 --- a/404/js/main.js +++ b/404/js/main.js @@ -5,7 +5,16 @@ $(document).mousemove(function (event) { });
});
+/*
// CHECKS IF USER IS ON MOBILE
if (screen.width <= 480) {
location.href = '/404/alternate';
+}
+*/
+
+// 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 |