7 lines
415 B
JavaScript
7 lines
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();
|
||
|
|
});
|
||
|
|
});
|