Files
flexiber/main.js
2023-02-07 01:24:14 +00:00

6 lines
129 B
JavaScript

;
var el = document.querySelector("img[alt=logo]").closest("a");
if (el.href != "index.html") {
el.href = "../index.html";
}