diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-08-11 00:03:46 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-08-11 00:03:46 -0400 |
commit | 5f7ffa76984da87c7b67be24f392a6ff50f5a8a2 (patch) | |
tree | 43513ec9f1b928674a4ebd37cc1fe0cf4cb24d31 | |
parent | ad911d6edd0fa76431284ef6283bb07da45d808d (diff) | |
parent | e50ca22b65feb0a71d2a610880e8f20e985c2fee (diff) |
Merge branch 'master' of github.com:CircleShift/WebCards
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -102,7 +102,7 @@ let a = document.createElement("a"); a.innerText = urls[i]; - a.href = "client.html?s=" + urls[i] + "&g=-1"; + a.href = "client.html?s=" + urls[i]; let b = document.createElement("button"); b.innerText = "X"; @@ -190,7 +190,7 @@ let concat = serverParts[0] + serverParts[1] + ":" + serverParts[2]; addAddr(concat); //c.setAttribute("href", url); - window.location = "client.html?s=" + concat + "&g=-1"; + window.location = "client.html?s=" + concat; } let themeURL = Theme.get(); |