diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-03-12 12:54:00 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-03-13 14:40:59 +0100 |
commit | 3ac13cd9cc09c190b273a772320b7fe2ed4655a1 (patch) | |
tree | b39c67d12516732dd24e17ce56126d395ef36cb9 | |
parent | e812ada4db11536fd8ddfb67410c436d792909b1 (diff) | |
download | server-3ac13cd9cc09c190b273a772320b7fe2ed4655a1.tar.gz |
Prefix game IDs with #.
-rw-r--r-- | public/join.js | 4 | ||||
-rw-r--r-- | views/head.pug | 4 | ||||
-rw-r--r-- | views/join.pug | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/public/join.js b/public/join.js index 78d9137..f3279ad 100644 --- a/public/join.js +++ b/public/join.js @@ -152,9 +152,9 @@ function update() { function update_common() { if (game.scenario !== "Standard") - document.querySelector("h1").textContent = game.title_name + " - " + game.scenario + document.querySelector("h1").textContent = "#" + game.game_id + " - " + game.title_name + " - " + game.scenario else - document.querySelector("h1").textContent = game.title_name + document.querySelector("h1").textContent = "#" + game.game_id + " - " + game.title_name let message = window.message if (game.status === 0) { diff --git a/views/head.pug b/views/head.pug index 5cbb726..dc7cf93 100644 --- a/views/head.pug +++ b/views/head.pug @@ -70,10 +70,10 @@ mixin gamelist(list,hide_title=0) div.game_head if item.scenario.length <= 2 div - | #{pace_icon} <a href="/join/#{item.game_id}">#{item.game_id} – #{item.title_name} (#{item.scenario})</a> #{chat_icon} + | #{pace_icon} <a href="/join/#{item.game_id}">##{item.game_id} – #{item.title_name} (#{item.scenario})</a> #{chat_icon} else div - | #{pace_icon} <a href="/join/#{item.game_id}">#{item.game_id} – #{item.title_name}</a> #{chat_icon} + | #{pace_icon} <a href="/join/#{item.game_id}">##{item.game_id} – #{item.title_name}</a> #{chat_icon} case item.status when 0 diff --git a/views/join.pug b/views/join.pug index bfb0cb8..c3960b7 100644 --- a/views/join.pug +++ b/views/join.pug @@ -6,7 +6,7 @@ html +social(game.title_name, "Play " + game.title_name + " with " + players.map(x=>x.name).join(" and ") + ".", game.title_id) - title= game.title_name + title ##{game.game_id} - #{game.title_name} style. th,td { border: var(--table-border); } a.red { text-decoration: none; color: var(--color-red); font-size: 15px; float: right; } @@ -33,9 +33,9 @@ html include header article if game.scenario === "Standard" - h1 #{game.title_name} + h1 ##{game.game_id} - #{game.title_name} else - h1 #{game.title_name} - #{game.scenario} + h1 ##{game.game_id} - #{game.title_name} - #{game.scenario} div.logo +gamecover(game.title_id) |