Standardize file indentation

This commit is contained in:
nemunaire 2026-05-17 18:04:50 +08:00
commit bad7e8e689
14 changed files with 734 additions and 492 deletions

View file

@ -2,12 +2,12 @@
<script src="/js/bootstrap.min.js"></script>
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
<script>
window.addEventListener("scroll", function() {
if (window.scrollY > 100) {
document.getElementById('mainnav').classList.add("scrolled");
} else {
document.getElementById('mainnav').classList.remove("scrolled");
}
});
document.getElementById('mainnav').classList.add("beginscroll");
window.addEventListener("scroll", function () {
if (window.scrollY > 100) {
document.getElementById("mainnav").classList.add("scrolled");
} else {
document.getElementById("mainnav").classList.remove("scrolled");
}
});
document.getElementById("mainnav").classList.add("beginscroll");
</script>