1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-30 07:50:47 +00:00

Fix extraneous comma

Thanks to Danielo Rodríguez
This commit is contained in:
Jermolene 2014-04-06 22:09:42 +01:00
parent e21d558ff0
commit b51d851f93

View File

@ -26,7 +26,7 @@ var NavigatorWidget = function(parseTreeNode,options) {
{type: "tw-close-all-tiddlers", handler: "handleCloseAllTiddlersEvent"},
{type: "tw-close-other-tiddlers", handler: "handleCloseOtherTiddlersEvent"},
{type: "tw-new-tiddler", handler: "handleNewTiddlerEvent"},
{type: "tw-import-tiddlers", handler: "handleImportTiddlersEvent"},
{type: "tw-import-tiddlers", handler: "handleImportTiddlersEvent"}
]);
};