diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2016-01-06 17:10:19 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2016-01-06 17:27:45 +0100 |
commit | c64ead08a36fccc36a42b3e74362aa423cfb62ed (patch) | |
tree | 5ada42f825b4ed0431f5c0426ab226aa0e7c2512 /src/app.ts | |
parent | 4fa246628bd9e5911ae998162f0bdc724cc739d2 (diff) | |
download | rpgedit-c64ead08a36fccc36a42b3e74362aa423cfb62ed.tar rpgedit-c64ead08a36fccc36a42b3e74362aa423cfb62ed.zip |
Replace all CoffeeScript code by TypeScript
Diffstat (limited to 'src/app.ts')
-rw-r--r-- | src/app.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/app.ts b/src/app.ts new file mode 100644 index 0000000..d1ca3cd --- /dev/null +++ b/src/app.ts @@ -0,0 +1,26 @@ +'use strict'; + + +require('./style.css'); + + +import * as lodash from 'lodash'; +_ = lodash; + +import MapContext from './control/MapContext'; +import MapData from './model/MapData'; + + +var mapContext: MapContext; + +window.onload = () => { + var xhr = new XMLHttpRequest(); + + xhr.onload = function() { + let mapDef = new MapData(JSON.parse(this.responseText)); + mapContext = new MapContext(mapDef); + } + + xhr.open('GET', 'resources/map/test.json', true); + xhr.send(); +}; |