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-06-27 12:48:06 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-27 12:48:06 -0700 |
commit | c148f4a4f329decec4602a48a8a71a62b429bfb4 (patch) | |
tree | 5dc552f1bfe34a4369999753b9217d88a10c61e2 /src/modules/record_sheet.js | |
parent | 9c0645b481224bcc777cac58eb2c7ea1592e58e1 (diff) |
WIP: render radial coord hexes/maps
Diffstat (limited to 'src/modules/record_sheet.js')
-rw-r--r-- | src/modules/record_sheet.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/record_sheet.js b/src/modules/record_sheet.js index 132a7dd..092870a 100644 --- a/src/modules/record_sheet.js +++ b/src/modules/record_sheet.js @@ -180,11 +180,11 @@ export function start(startLoc, units) { for (const affiliation in forces) { const container = document.querySelector(`#${affiliation}-record`); const records = container.querySelector('.records'); - const name = startLoc?.dataset[`${affiliation}Name`]; + // const name = startLoc?.dataset[`${affiliation}Name`]; - if (name) { - container.querySelector('.name').textContent = name; - } + // if (name) { + // container.querySelector('.name').textContent = name; + // } forces[affiliation].forEach(r => records.appendChild(r)); } |