This commit is contained in:
2026-04-26 22:02:24 +02:00
commit 73442783b7
1470 changed files with 43422 additions and 0 deletions

13
app/assets/loading/loading.js Executable file
View File

@@ -0,0 +1,13 @@
document.addEventListener("DOMContentLoaded", function() {
var iframes = document.querySelectorAll("iframe");
iframes.forEach(function(iframe) {
var loader = iframe.parentElement.querySelector(".loader");
loader.classList.add("active");
iframe.addEventListener("load", function() {
loader.classList.remove("active");
iframe.classList.add("loaded");
});
});
});