From 6066b5cf8955012d62ec8fc23fed627c7d7e4c9d Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Mon, 30 Jan 2012 18:25:26 +0000 Subject: [PATCH] Removed extraneous parameters to JSONParser constructor --- js/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/App.js b/js/App.js index 6df76adce..ee3fbe73c 100644 --- a/js/App.js +++ b/js/App.js @@ -28,7 +28,7 @@ var App = function() { this.store = new WikiStore(); // Register the parsers this.store.registerParser("text/x-tiddlywiki",new WikiTextParser({store: this.store})); - this.store.registerParser("application/json",new JSONParser({store: this.store})); + this.store.registerParser("application/json",new JSONParser()); var imageParser = new ImageParser(); this.store.registerParser("image/svg+xml",imageParser); this.store.registerParser("image/jpg",imageParser);