site/_includes/scripts/close.js
Ruben 418222fc0c
All checks were successful
/ build (push) Successful in 33s
not very useful close button script (thanks unnick)
2025-07-15 11:18:36 -05:00

7 lines
No EOL
415 B
JavaScript

// unnick asked for this, i provide.
// this provides no usefulness and there is no implementation to respawn windows. but i think it's funny and you can just reload anyways since it doesn't take long to load anyways
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll(".close-button").forEach(e => {
e.onclick = () => e.parentElement.parentElement.remove();
});
});