From 8e280de1391edb594f684924d3ca32659a488b82 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 19 Mar 2025 17:20:08 +0100 Subject: [PATCH] Added header h1 pointer --- app/static/js/iframe.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/static/js/iframe.js b/app/static/js/iframe.js index c8ca97e..761bce5 100644 --- a/app/static/js/iframe.js +++ b/app/static/js/iframe.js @@ -62,6 +62,7 @@ document.addEventListener("DOMContentLoaded", function () { // Add click event listener to header h1 to restore the original main content and style const headerH1 = document.querySelector("header h1"); if (headerH1) { + headerH1.style.cursor = "pointer"; headerH1.addEventListener("click", function () { // Restore the original content of the main element (removing the iframe) mainElement.innerHTML = originalContent;