planet-wars/frontend/www/index.js
2019-09-24 15:31:21 +02:00

15 lines
447 B
JavaScript

import { set_instance } from './index.ts'
import { } from './games.ts' // IMPORT GAMES PLEASE, thank you webpack <3
const URL = window.location.origin+window.location.pathname;
const LOCATION = URL.substring(0, URL.lastIndexOf("/") + 1);
const game_location = LOCATION + "static/games/Chandra Garrett.json";
fetch(game_location)
.then((r) => r.text())
.then((response) => {
set_instance(response);
}).catch(console.error);