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-29 18:02:18 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-29 18:02:18 -0700 |
commit | 187faec2dfb7959c536d6847a61be912cff9275e (patch) | |
tree | 2875104e6f5c33912dd6cfffb0c36d2982d702ad /src/import_mapsheets.js | |
parent | fdf9e0145ee14d4db7004c56d0e5b15cb3461e2d (diff) |
Try to simplify trooper counter
Diffstat (limited to 'src/import_mapsheets.js')
-rw-r--r-- | src/import_mapsheets.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/import_mapsheets.js b/src/import_mapsheets.js deleted file mode 100644 index 2e1b0fc..0000000 --- a/src/import_mapsheets.js +++ /dev/null @@ -1,8 +0,0 @@ -import mapsheets from './assets/images/mapsheets.svg'; - -const useEls = document.querySelectorAll('svg use[data-href*="mapsheets.svg"'); - -useEls.forEach(el => { - const href = el.dataset.href.replace('mapsheets.svg', mapsheets.split('/').pop()); - el.setAttributeNS(null, 'href', href); -}); |