summaryrefslogtreecommitdiff
path: root/js/redirect-to-desktop.js
blob: 854cff9c74fc46a031b4087eebbd1bfe6d6f0e8b (plain) (blame)
1
2
3
4
// CHECKS IF USER IS ON DESKTOP
if (screen.width > 768) {
    location.href = '/';
}