mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-04-28 07:26:54 +02:00
Marked header h1 as clickable
This commit is contained in:
parent
f5a9838474
commit
79e10e97b7
@ -58,6 +58,9 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
// Add click event listener to header h1 to restore the original main content and style
|
// Add click event listener to header h1 to restore the original main content and style
|
||||||
const headerH1 = document.querySelector("header h1");
|
const headerH1 = document.querySelector("header h1");
|
||||||
if (headerH1) {
|
if (headerH1) {
|
||||||
|
// Change the cursor to pointer to indicate clickability
|
||||||
|
headerH1.style.cursor = "pointer";
|
||||||
|
|
||||||
headerH1.addEventListener("click", function () {
|
headerH1.addEventListener("click", function () {
|
||||||
// Restore the original content of the main element (removing the iframe)
|
// Restore the original content of the main element (removing the iframe)
|
||||||
mainElement.innerHTML = originalContent;
|
mainElement.innerHTML = originalContent;
|
||||||
@ -78,7 +81,6 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||||||
if (customScrollbar) {
|
if (customScrollbar) {
|
||||||
customScrollbar.style.display = "";
|
customScrollbar.style.display = "";
|
||||||
}
|
}
|
||||||
adjustScrollContainerHeight()
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user