open logo url in new tab

This commit is contained in:
Alex Ackermann
2025-05-30 15:12:29 +02:00
parent 68e0e13c2f
commit 5af73e414a

View File

@@ -8,6 +8,7 @@ document.addEventListener("DOMContentLoaded", function () {
const link = document.createElement("a");
link.href = url;
link.target = "_blank";
const parent = logoTextSelector.parentNode;
parent.insertBefore(link, logoTextSelector);