v1 du site #12

Merged
mbess merged 25 commits from develop into master 2024-03-16 09:23:26 +00:00
Showing only changes of commit 9946d619ff - Show all commits

View file

@ -46,12 +46,16 @@
const nav_button = document.getElementById("navi-toggle") const nav_button = document.getElementById("navi-toggle")
nav_button.addEventListener("change", event => { nav_button.addEventListener("change", event => {
if (event.target.checked) { if (event.target.checked) {
/*
document.documentElement.style.overflow = "hidden"; document.documentElement.style.overflow = "hidden";
document.body.style.overflow = "hidden"; document.body.style.overflow = "hidden";
*/
} }
if (!event.target.checked) { if (!event.target.checked) {
document.documentElement.overflow = "initial"; /*
document.documentElement.style.overflow = "initial";
document.body.style.overflow = "initial"; document.body.style.overflow = "initial";
*/
} }
}) })
</script> </script>