diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-09 12:54:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-13 14:10:20 +0200 |
commit | 9479b226f6cbfb53d66123a397f46cca0f682d45 (patch) | |
tree | 2d3bbe189f72e400f477ec1e910c21f12fd42ab7 /public/join.js | |
parent | f6397dca9091cba8057f62815a9eabacf02ad098 (diff) | |
download | server-9479b226f6cbfb53d66123a397f46cca0f682d45.tar.gz |
Use status constants.
Diffstat (limited to 'public/join.js')
-rw-r--r-- | public/join.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/public/join.js b/public/join.js index 72da646..85445dc 100644 --- a/public/join.js +++ b/public/join.js @@ -155,6 +155,9 @@ function update() { if (player) { element.classList.remove("is_invite") switch (game.status) { + case 3: + element.innerHTML = player.name + break case 2: if (player.user_id === user_id) element.innerHTML = play_link(player) @@ -236,8 +239,8 @@ function update() { message.innerHTML = `<a href="/${game.title_id}/play.html?game=${game.game_id}">Observe</a>` } else if (game.status === 2) { message.innerHTML = `<a href="/${game.title_id}/play.html?game=${game.game_id}">Review</a>` - } else { - message.innerHTML = `<a href="/${game.title_id}/play.html?game=${game.game_id}">Enter</a>` + } else if (game.status === 3) { + message.innerHTML = "Archived" } if (game.owner_id === user_id) { |