From 28d026a9a61a820d054d8562eaaa0e2c82dd84be Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 8 Feb 2025 11:22:26 +0100 Subject: add button to toggle markers --- play.html | 1 + play.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/play.html b/play.html index 4dd5635..4bc29dd 100644 --- a/play.html +++ b/play.html @@ -31,6 +31,7 @@
  • Card Gallery +
    diff --git a/play.js b/play.js index 55eb2b4..290c9b1 100644 --- a/play.js +++ b/play.js @@ -1150,3 +1150,7 @@ function toggle_discard() { function toggle_removed() { document.getElementById("removed_panel").classList.toggle("hide") } + +function toggle_pieces() { + document.getElementById("markers").classList.toggle("hide") +} -- cgit v1.2.3