front: hide everything related to plausible if it's disabled

This commit is contained in:
wukko
2024-03-16 23:33:33 +06:00
parent 49ef0b4e8b
commit 25aa2fb609
2 changed files with 24 additions and 15 deletions

View File

@@ -564,7 +564,12 @@ function loadSettings() {
eid("cobalt-body").classList.add('no-animation');
}
for (let i = 0; i < checkboxes.length; i++) {
if (sGet(checkboxes[i]) === "true") eid(checkboxes[i]).checked = true;
try {
if (sGet(checkboxes[i]) === "true") eid(checkboxes[i]).checked = true;
}
catch {
console.error(`checkbox ${checkboxes[i]} failed to initialize`)
}
}
for (let i in switchers) {
changeSwitcher(i, sGet(i))