loading screen

main
alexanderroese 2024-06-22 14:44:24 +02:00
parent 93ffa7a648
commit c67bfcf1d7
1 changed files with 2 additions and 2 deletions

View File

@ -60,12 +60,12 @@
function showLoadingScreen() {
loadingScreen.classList.remove("shx-loading-screen-hidden");
body.classList.remove("shx-loading-screen-overflow-scroll")
body.classList.add("shx-loading-screen-overflow-scroll")
}
function hideLoadingScreen() {
loadingScreen.classList.add("shx-loading-screen-hidden");
body.classList.add("shx-loading-screen-overflow-scroll")
body.classList.remove("shx-loading-screen-overflow-scroll")
}
window.addEventListener("beforeunload", function() {