Init project

This commit is contained in:
2025-06-18 15:26:47 +02:00
commit 1bdc9dacb6
11 changed files with 2428 additions and 0 deletions

7
web/popup.js Normal file
View File

@@ -0,0 +1,7 @@
export function setupPopups() {
document.querySelectorAll(".popup-close").forEach(element => {
element.addEventListener("click", event => {
event.target.parentElement.style.display="none";
});
});
}