25 lines
No EOL
745 B
JavaScript
25 lines
No EOL
745 B
JavaScript
function onload() {
|
|
redirect()
|
|
sdocument.getElementById("body").style.fontFamily = "system-ui, sans-serif";
|
|
}
|
|
|
|
function toggleTheme() {
|
|
// Obtains an array of all <link>
|
|
// elements.
|
|
// Select your element using indexing.
|
|
if (document.getElementById("body").style.fontFamily !== "standardGalactic") {
|
|
document.getElementById("body").style.fontFamily = "standardGalactic";
|
|
}
|
|
else{
|
|
document.getElementById("body").style.fontFamily = "system-ui, sans-serif";
|
|
}
|
|
}
|
|
|
|
function redirect() {
|
|
let chromium = /Chrome|Chromium|OPR|Opera|Edge|UC|QQ|Brave/.test(
|
|
navigator.userAgent
|
|
);
|
|
let disclaimer = `<div class="web-disclaimer">`;
|
|
if (chromium)
|
|
window.location.replace("/nochrome");
|
|
} |