summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'play.js')
-rw-r--r--play.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/play.js b/play.js
index 590d68d..0c4d6a4 100644
--- a/play.js
+++ b/play.js
@@ -553,7 +553,7 @@ function layout_turn_marker() {
function layout_round_marker() {
let x = 709 + 24 + (view.round - 1) * 53
- let y = 142 + 24
+ let y = 141 + 24
ui.round.style.left = x - 25 + "px"
ui.round.style.top = y - 25 + "px"
if (view.round_player === "Democrat")
@@ -880,7 +880,7 @@ function on_update() {
if (view.discard)
document.getElementById("discard_panel").classList.remove("hide")
else
- document.getElementById("discard_panel").classList.add("hide")
+ document.getElementById("discard_panel").classList.toggle("hide", discard_toggle)
ui.removed.replaceChildren()
for (let c of view.strategy_removed)
@@ -1187,8 +1187,10 @@ function on_click_space_tip(id) {
scroll_into_view(ui.spaces[id])
}
+let discard_toggle = document.getElementById("discard_panel").classList.contains("hide")
function toggle_discard() {
- document.getElementById("discard_panel").classList.toggle("hide")
+ discard_toggle = !discard_toggle
+ document.getElementById("discard_panel").classList.toggle("hide", discard_toggle)
}
function toggle_removed() {