diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-07-02 10:28:04 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:17 +0100 |
commit | 9a5318d4cdc5a18748e733975d57697d04dcc1ce (patch) | |
tree | ea5d49c155f3640032a3b2525c238f83113cd296 /ui.js | |
parent | fc5a07b315414f1c34e702841a70e4621b51fe0a (diff) | |
download | hammer-of-the-scots-9a5318d4cdc5a18748e733975d57697d04dcc1ce.tar.gz |
Show turn info bar on all block games.
Diffstat (limited to 'ui.js')
-rw-r--r-- | ui.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -721,6 +721,7 @@ function on_update() { document.getElementById("england_vp").textContent = game.e_vp; document.getElementById("scotland_vp").textContent = game.s_vp; + document.querySelector(".turn_info").textContent = `Turn ${game.turn} of Year ${game.year}`; update_cards(); update_map(); |