diff options
| -rw-r--r-- | js/redirect-to-mobile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/redirect-to-mobile.js b/js/redirect-to-mobile.js index 9eadbc3..ac9a41d 100644 --- a/js/redirect-to-mobile.js +++ b/js/redirect-to-mobile.js @@ -1,4 +1,4 @@ // CHECKS IF USER IS ON MOBILE -if (screen.width <= 699) { +if (screen.width <= 768) { location.href = '/m/'; -}
\ No newline at end of file +} |