site/_includes/scripts/close.js
Ruben 9b38e4bf15
All checks were successful
/ build (push) Successful in 6m53s
clean up styling, redo navbar, redo settings
2025-10-18 03:45:31 -05:00

7 lines
No EOL
377 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
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("close-button").forEach(e => {
e.onclick = () => e.parentElement.parentElement.parentElement.remove();
});
});