summaryrefslogtreecommitdiffstats
path: root/src/app.coffee
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2016-01-05 18:29:21 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2016-01-05 18:29:21 +0100
commit6ed351b495db9e9b86066a419df43dd959ae94d3 (patch)
tree5c08600e2cc2e907594f5c74a4a23151e8ef113c /src/app.coffee
parent72258029665409148dab429e5c5f7fabaf157036 (diff)
downloadrpgedit-6ed351b495db9e9b86066a419df43dd959ae94d3.tar
rpgedit-6ed351b495db9e9b86066a419df43dd959ae94d3.zip
MapView: remove ready argument
Diffstat (limited to 'src/app.coffee')
-rw-r--r--src/app.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.coffee b/src/app.coffee
index 630fcfd..6c64c5a 100644
--- a/src/app.coffee
+++ b/src/app.coffee
@@ -14,7 +14,7 @@ window.onload = ->
xhr = new XMLHttpRequest()
xhr.onload = ->
mapDef = new Map(JSON.parse this.responseText)
- mapView = new MapView mapDef, ->
+ mapView = new MapView mapDef
xhr.open 'GET', 'resources/map/test.json', true
xhr.send()