summaryrefslogtreecommitdiff
path: root/js/redirect-to-desktop.js
blob: e621a5d95af72f59029b995da974d20964a421bd (plain) (blame)
1
2
3
4
5
// Checks if user is on desktop
// 3/29/2020, 13:56, Not very performance cool if I think of it lol
if (screen.width > 768) {
    location.href = '/';
}