summaryrefslogtreecommitdiff
path: root/js/redirect-to-mobile.js
blob: 599d0b6dfb7382a61bdc78a4d5b0e5fa6caa415a (plain) (blame)
1
2
3
4
// CHECKS IF USER IS ON MOBILE
if (screen.width <= 699) {
    location.href = '/mobile';
}