From b51d851f939b5259020cf04848a6a726df258b9d Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sun, 6 Apr 2014 22:09:42 +0100 Subject: [PATCH] Fix extraneous comma MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to Danielo Rodríguez --- core/modules/widgets/navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/navigator.js b/core/modules/widgets/navigator.js index 3f57cf919..725a39555 100755 --- a/core/modules/widgets/navigator.js +++ b/core/modules/widgets/navigator.js @@ -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"} ]); };