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-02 14:46:27 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-06-02 14:46:27 -0700 |
commit | d826a01ff91301d88762a59881ac53053926b5be (patch) | |
tree | ebc23acbe51b271942df85f3de8ae6dadb1513f8 /public | |
parent | 163e3a9de59f5d6a8df38fa32a1e7dc4db1ad024 (diff) |
Add integration test-helpers and refactor integration tests
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/index.html b/public/index.html index df3fc65..b78df5b 100644 --- a/public/index.html +++ b/public/index.html @@ -145,7 +145,7 @@ Loading... </div> - <object type="image/svg+xml" data="assets/images/scenario_template.svg"></object> + <object id="map-resource" type="image/svg+xml" data="assets/images/scenario_template.svg"></object> <div id="status"> <span id="hex-counter">Distance: <span id="hex-count">-</span></span> @@ -246,7 +246,7 @@ <script> const source = new EventSource('/esbuild'); source.addEventListener('change', () => location.reload()); - source.addEventListener('message', (e) => console.log(e)); + // source.addEventListener('message', (e) => console.log(e)); </script> <script src="index.js"></script> <script src="soldier_record_block.js"></script> |