index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 89af2a1..ec652b3 100644 --- a/src/index.js +++ b/src/index.js @@ -269,7 +269,7 @@ document.querySelectorAll('[name="select-elevation"]').forEach(el => { }); }); -document.querySelector('#toggle-grid-vis input').addEventListener('change', function () { +document.querySelector('#toggle-grid-vis').addEventListener('change', function () { const svg = document.querySelector('object').contentDocument.querySelector('svg'); svg.querySelector('.grid').style.display = this.checked ? 'inline' : 'none'; svg.querySelector('#dots').style.display = this.checked ? 'inline' : 'none'; |