index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-20 13:59:49 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-20 13:59:49 -0700 |
commit | 6b4312aa1f7fc49cd212d9557f71f3624e0f145f (patch) | |
tree | 656da3e67fbedc181d75c6af452285a557253513 | |
parent | 787711eaa296938de4dd462fdc1ff363a8cef7ba (diff) |
Fix show/hide record sheet toggle
-rw-r--r-- | src/index.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/index.js b/src/index.js index 96b138f..cbd6b3b 100644 --- a/src/index.js +++ b/src/index.js @@ -15,15 +15,15 @@ const mapPlaceholder = document.querySelector('.map-placeholder'), fileInputEl = document.querySelector('input[type="file"]'), toggleContentVis = (function () { - // document.querySelectorAll('#content div').forEach(div => { - // if (this.checked) { - // div.style.display = div.id == 'record-sheet' ? 'flex' : 'block'; - // } else { - // div.style.display = 'none'; - // } - // }); - - // localStorage.setItem('content-visibility', this.checked); + document.querySelectorAll('#content > div').forEach(div => { + if (this.checked) { + div.style.display = div.id == 'record-sheet' ? 'flex' : 'block'; + } else { + div.style.display = 'none'; + } + }); + + localStorage.setItem('content-visibility', this.checked); }).bind(contentVisToggleEl); let mapResourceEl = document.querySelector('object'); |