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-04-28 16:46:25 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-28 16:46:25 -0700 |
commit | 3e521e2f64809edc47f50f7215a6a05dd32b69dc (patch) | |
tree | c82fcea9de791b5090383a4cbf3ad10a92cc06e0 /src/modules/gameboard.js | |
parent | 4ce55ea0cd7db1077bc7919ee976458c900c968c (diff) |
Rename element class 'board' to 'gameboard'
Diffstat (limited to 'src/modules/gameboard.js')
-rw-r--r-- | src/modules/gameboard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/gameboard.js b/src/modules/gameboard.js index 7623a31..9d054d0 100644 --- a/src/modules/gameboard.js +++ b/src/modules/gameboard.js @@ -105,7 +105,7 @@ function drawSightLine(sourceCell, targetCell) { const hexes = svg.querySelectorAll(selector); sightLine.setHexes(hexes); const line = sightLine.create(getCellPosition(sourceCell), getCellPosition(targetCell)); - svg.querySelector('.board').appendChild(line); + svg.querySelector('.gameboard').appendChild(line); distanceCallback && distanceCallback(hexes.length - 1); } |