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