summaryrefslogtreecommitdiffstats
path: root/site/main.mjs
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-12-23 13:53:49 -0500
committerBrian Cully <bjc@spork.org>2025-12-23 13:53:49 -0500
commit1887bb00cf21177b7ba70954e8a1f638ef7dcb53 (patch)
tree0e8f8f155d9a5dae323800fa8ea678d167b11647 /site/main.mjs
parenta2c8d50e62713eed9fc6820b68eda49bebea8314 (diff)
downloadautomathon-1887bb00cf21177b7ba70954e8a1f638ef7dcb53.tar.gz
automathon-1887bb00cf21177b7ba70954e8a1f638ef7dcb53.zip
simplify css, allow multiple inspectors
Diffstat (limited to 'site/main.mjs')
-rw-r--r--site/main.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/main.mjs b/site/main.mjs
index d99b3a3..5a4d94a 100644
--- a/site/main.mjs
+++ b/site/main.mjs
@@ -5,7 +5,7 @@ let TICKS_PER_SECOND = 15;
let MS_PER_TICK = 1_000 / TICKS_PER_SECOND;
// one per page
-const CANVAS_SELECTOR = '#arena canvas';
+const CANVAS_SELECTOR = '#arena';
const TICK_BUTTON_SELECTOR = '#tick';
const TICK_RATE_SELECTOR = '#tick-rate-select';
const RUN_BUTTON_SELECTOR = '#run';