aboutsummaryrefslogtreecommitdiff
path: root/webAO/master.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-28 21:50:09 +0200
committerstonedDiscord <Tukz@gmx.de>2022-03-28 21:50:09 +0200
commit1d88577978b370ab3c96f007aa1cb646bdf6bf35 (patch)
tree9957c16aee74b8319dfc77f1a6a59565cb1a05d7 /webAO/master.ts
parentfa175d7b0136cd837942eb54db0c98c4314eaada (diff)
don't need double slashes
Diffstat (limited to 'webAO/master.ts')
-rw-r--r--webAO/master.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/master.ts b/webAO/master.ts
index ca129fd..5ac63b3 100644
--- a/webAO/master.ts
+++ b/webAO/master.ts
@@ -143,8 +143,8 @@ function processServerlist(thelist: { name: string, description: string, ip: str
if (serverEntry.ws_port) {
document.getElementById('masterlist').innerHTML
+= `<li id="server${i}" onmouseover="setServ(${i})"><p>${safeTags(serverEntry.name)}</p>`
- + `<a class="button" href="${myURL}/client.html?mode=watch&ip=${ipport}">Watch</a>`
- + `<a class="button" href="${myURL}/client.html?mode=join&ip=${ipport}">Join</a></li>`;
+ + `<a class="button" href="${myURL}client.html?mode=watch&ip=${ipport}">Watch</a>`
+ + `<a class="button" href="${myURL}client.html?mode=join&ip=${ipport}">Join</a></li>`;
}
}
}