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-07-10 17:35:18 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-10 17:35:18 -0700 |
commit | b3f902f012e04facad489c613b5c577a1788b570 (patch) | |
tree | a0dd26414256b88cd800424cc8cee91a918cb34b /src/index.js.test | |
parent | 4cf7aaab807f36721416eedfe5f9fab3f0c55e20 (diff) |
Build scenarios from scenario files
Diffstat (limited to 'src/index.js.test')
-rw-r--r-- | src/index.js.test | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/index.js.test b/src/index.js.test deleted file mode 100644 index f420f22..0000000 --- a/src/index.js.test +++ /dev/null @@ -1,13 +0,0 @@ -const svgns = 'http://www.w3.org/2000/svg'; -const [icon, use] = ['svg', 'use'].map(t => document.createElementNS(svgns, t)); - -icon.setAttributeNS(null, 'viewBox', '-6 -6 12 12'); -icon.setAttribute('xmlns', svgns); -icon.classList.add('weapon-icon'); - -// use.setAttributeNS(null, 'href', `assets/images/counters.svg#rifle`); -use.setAttributeNS(null, 'href', `assets/images/counters2.svg#smg`); - -icon.appendChild(use); - -document.querySelector('body').appendChild(icon); |