From 758762eee364dad18f608c9b3764e7643609aa65 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 29 Jul 2014 10:03:43 +0100 Subject: [PATCH] Autosave after an import --- core/modules/widgets/navigator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/widgets/navigator.js b/core/modules/widgets/navigator.js index 498fd1fa3..71a49ff2f 100755 --- a/core/modules/widgets/navigator.js +++ b/core/modules/widgets/navigator.js @@ -487,6 +487,8 @@ NavigatorWidget.prototype.handlePerformImportEvent = function(event) { })); // Navigate to the $:/Import tiddler this.addToHistory([IMPORT_TITLE]); + // Send a notification event + this.dispatchEvent({type: "tw-auto-save-wiki"}); }; exports.navigator = NavigatorWidget;