blob: e379708e6089e7ade398c932ae334250289d6031 (
plain)
1
2
3
4
5
6
7
8
9
|
if (location.search === "?online") {
document.getElementById('online-login').style.display = "";
document.write(`<` + `script src="../online/global.js"></` + `script>`);
} else {
startHooks.forEach((hook) => {
hook(this);
})
document.getElementById('ping').style.display = "none";
}
|