mirror of
https://github.com/trussed-dev/flexiber.git
synced 2026-03-11 16:35:17 -07:00
6 lines
129 B
JavaScript
6 lines
129 B
JavaScript
;
|
|
var el = document.querySelector("img[alt=logo]").closest("a");
|
|
if (el.href != "index.html") {
|
|
el.href = "../index.html";
|
|
}
|