2024-08-17 13:23:43 -06:00
|
|
|
function onload() {
|
2024-08-24 02:42:43 -06:00
|
|
|
if (!localStorage.getItem('disclaimerAccepted')) {
|
2024-08-24 02:17:40 -06:00
|
|
|
redirect()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-24 02:42:43 -06:00
|
|
|
function acceptDisclaimer() {
|
|
|
|
|
|
|
|
console.debug(sessionStorage.getItem('disclaimerAccepted'))
|
2024-08-17 13:23:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
function redirect() {
|
2024-08-20 19:18:23 -06:00
|
|
|
const chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ|Brave/.test(
|
|
|
|
navigator.userAgent
|
|
|
|
);
|
2024-08-24 02:42:43 -06:00
|
|
|
if (chromium && screen.width >= 699) {
|
|
|
|
window.location.replace("/bsod");
|
|
|
|
}
|
|
|
|
if (chromium && screen.width <= 699) {
|
|
|
|
window.location.replace("/mobile-warn");
|
|
|
|
}
|
2024-08-20 19:18:23 -06:00
|
|
|
}
|