Get the CSS and statuc stuff to work

This commit is contained in:
2026-07-31 12:57:19 -07:00
parent ba8afc76cc
commit f0da8aac87
8 changed files with 271 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
var error_close_buttons = document.getElementsByClassName("close_error_button");
for (const close_button of error_close_buttons) {
close_button.addEventListener("click", function () {
this.parentElement.classList.add("hidden");
});
}