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/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); -}); |