Homepage: click ATC Lakehouse title to open architecture diagram

This commit is contained in:
Lakehouse Admin
2026-05-19 23:02:05 +02:00
parent 007f6cedc5
commit 85e8d7f054
+14
View File
@@ -35,3 +35,17 @@
init(); init();
} }
})(); })();
function linkLakehouseTitle() {
const ARCH = "http://atc-docker01.dell-atc.lan:8080/docs/architecture.html";
document.querySelectorAll("header h1, header p, .greeting, [class*=greeting]").forEach(function (el) {
if (el.dataset.atcLinked) return;
if (/lakehouse/i.test(el.textContent || "")) {
el.style.cursor = "pointer";
el.title = "Open architecture diagram";
el.addEventListener("click", function () { window.open(ARCH, "_blank"); });
el.dataset.atcLinked = "1";
}
});
}