1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2025-01-03 06:50:11 +00:00

config: make sure recaptcha is hidden when disabled

This commit is contained in:
Harvey Tindall 2023-06-26 23:24:58 +01:00
parent 3fa4b01115
commit b5c80e9d27
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
2 changed files with 13 additions and 10 deletions

View File

@ -341,6 +341,7 @@
"required": false, "required": false,
"requires_restart": true, "requires_restart": true,
"type": "bool", "type": "bool",
"depends_true": "enabled",
"value": false, "value": false,
"description": "More reliable, but requires some setup. See jfa-go wiki for more info." "description": "More reliable, but requires some setup. See jfa-go wiki for more info."
}, },

View File

@ -56,17 +56,19 @@ export const loadLangSelector = (page: string) => {
localStorage.setItem("timefmt", fmt); localStorage.setItem("timefmt", fmt);
}; };
const t12 = document.getElementById("lang-12h") as HTMLInputElement; const t12 = document.getElementById("lang-12h") as HTMLInputElement;
t12.onchange = () => setTimefmt("12h"); if (typeof(t12) !== "undefined" && t12 != null) {
const t24 = document.getElementById("lang-24h") as HTMLInputElement; t12.onchange = () => setTimefmt("12h");
t24.onchange = () => setTimefmt("24h"); const t24 = document.getElementById("lang-24h") as HTMLInputElement;
t24.onchange = () => setTimefmt("24h");
const preference = localStorage.getItem("timefmt"); const preference = localStorage.getItem("timefmt");
if (preference == "12h") { if (preference == "12h") {
t12.checked = true; t12.checked = true;
t24.checked = false; t24.checked = false;
} else if (preference == "24h") { } else if (preference == "24h") {
t24.checked = true; t24.checked = true;
t12.checked = false; t12.checked = false;
}
} }
} }
let queryString = new URLSearchParams(window.location.search); let queryString = new URLSearchParams(window.location.search);