Removed extraneous parameters to JSONParser constructor

print-window-tiddler
Jeremy Ruston 2012-01-30 18:25:26 +00:00
rodzic 56e701b326
commit 6066b5cf89
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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