Added restore functionality to small logo

This commit is contained in:
2025-07-07 15:06:36 +02:00
parent 3f6a195ecb
commit d99a8c8452
3 changed files with 7 additions and 8 deletions

View File

@@ -105,12 +105,11 @@ document.addEventListener("DOMContentLoaded", function() {
});
});
// Clicking the header's H1 will restore the original view
const headerH1 = document.querySelector("header h1");
if (headerH1) {
headerH1.style.cursor = "pointer";
headerH1.addEventListener("click", restoreOriginal);
}
document.querySelectorAll(".js-restore").forEach(el => {
el.style.cursor = "pointer";
el.addEventListener("click", restoreOriginal);
});
// On full page load, check URL parameters to auto-open an iframe
window.addEventListener("load", function() {