(() => {
function checkUrl() {
if (location.href.startsWith("https://wnet.ink/~~/~/manual/")) {
document.documentElement.classList.remove("lp-with-bg")
} else {
document.documentElement.classList.add("lp-with-bg")
}
}
document.addEventListener("htmx:pushedIntoHistory", () => checkUrl())
document.addEventListener("htmx:historyRestore", () => checkUrl())
document.addEventListener("htmx:replacedInHistory", () => checkUrl())
window.addEventListener("load", () => checkUrl())
})()