1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-02 08:50:46 +00:00

Removed extraneous parameters to JSONParser constructor

This commit is contained in:
Jeremy Ruston 2012-01-30 18:25:26 +00:00
parent 56e701b326
commit 6066b5cf89

View File

@ -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);