summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.html1
-rw-r--r--play.js4
2 files changed, 5 insertions, 0 deletions
diff --git a/play.html b/play.html
index 4dd5635..4bc29dd 100644
--- a/play.html
+++ b/play.html
@@ -31,6 +31,7 @@
<li><a target="_blank" href="/1989-dawn-of-freedom/info/cards.html">Card Gallery</a>
</menu>
</details>
+ <button onclick="toggle_pieces()"><img src="/images/earth-africa-europe.svg"></button>
<details>
<summary><img src="images/all-seeing-eye.svg"></summary>
<menu>
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")
+}