From d7d13411aed277b7e1aad5053f9d5d0df4f308bd Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 10 Jan 2025 16:12:13 +0100 Subject: striped background for discard and removed card panels --- play.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'play.js') 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() { -- cgit v1.2.3