TLS: Remove ECH Force Query

This commit is contained in:
MHSanaei
2026-05-04 13:20:24 +02:00
parent 51e2fb6dbf
commit e19061d513
66 changed files with 4378 additions and 4636 deletions
+17 -5
View File
@@ -108,8 +108,15 @@
el: '#app',
data: {
themeSwitcher,
loadingStates: { fetched: false, spinning: false },
user: { username: "", password: "", twoFactorCode: "" },
loadingStates: {
fetched: false,
spinning: false
},
user: {
username: "",
password: "",
twoFactorCode: ""
},
twoFactorEnable: false,
lang: "",
animationStarted: false
@@ -233,13 +240,18 @@
}
}
});
pm_wait_for_forms.observe(pm_host, { childList: true, subtree: true });
pm_wait_for_forms.observe(pm_host, {
childList: true,
subtree: true
});
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', pm_init, { once: true });
document.addEventListener('DOMContentLoaded', pm_init, {
once: true
});
} else {
pm_init();
}
</script>
{{ template "page/body_end" .}}
{{ template "page/body_end" .}}