2025-07-15 11:18:36 -05:00
|
|
|
// unnick asked for this, i provide.
|
2025-10-18 03:45:31 -05:00
|
|
|
// this provides no usefulness and there is no implementation to respawn windows. but i think it's funny and you can just reload
|
2025-07-15 11:18:36 -05:00
|
|
|
document.addEventListener("DOMContentLoaded", function() {
|
2025-10-18 03:45:31 -05:00
|
|
|
document.querySelectorAll("close-button").forEach(e => {
|
|
|
|
|
e.onclick = () => e.parentElement.parentElement.parentElement.remove();
|
2025-07-15 11:18:36 -05:00
|
|
|
});
|
|
|
|
|
});
|