This commit is contained in:
Ulysse Cura 2026-03-08 14:06:02 +01:00
parent cec3213d36
commit 1b38ec3c5a
1 changed files with 1 additions and 3 deletions

View File

@ -22,8 +22,6 @@ async function sessionStartupAnimation()
let all_default_elements = document.body.querySelectorAll("*");
all_default_elements.forEach((elem) => elem.style.opacity = 0);
console.log(document.body.style.height);
let xmlhttp = new XMLHttpRequest();
// Not the most optimised way, but it's working
@ -92,7 +90,7 @@ window.onkeydown = () => {
window.onkeydown = null;
}
// Only start animation per session
// Only start animation once per session
window.onload = () => {
document.body.style.opacity = 1;