summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/redirect-to-desktop.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/redirect-to-desktop.js b/js/redirect-to-desktop.js
index 1530ad1..854cff9 100644
--- a/js/redirect-to-desktop.js
+++ b/js/redirect-to-desktop.js
@@ -1,4 +1,4 @@
// CHECKS IF USER IS ON DESKTOP
-if (screen.width > 699) {
+if (screen.width > 768) {
location.href = '/';
}