kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Remove extraneous autosave attribute from navigator widget
Inadvertently committed.print-window-tiddler
rodzic
2758e586bd
commit
f0d512edf0
|
@ -52,7 +52,6 @@ NavigatorWidget.prototype.execute = function() {
|
|||
// Get our parameters
|
||||
this.storyTitle = this.getAttribute("story");
|
||||
this.historyTitle = this.getAttribute("history");
|
||||
this.autosave = this.getAttribute("autosave","yes");
|
||||
// Construct the child widgets
|
||||
this.makeChildWidgets();
|
||||
};
|
||||
|
@ -62,7 +61,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of
|
|||
*/
|
||||
NavigatorWidget.prototype.refresh = function(changedTiddlers) {
|
||||
var changedAttributes = this.computeAttributes();
|
||||
if(changedAttributes.story || changedAttributes.history || changedAttributes.autosave) {
|
||||
if(changedAttributes.story || changedAttributes.history) {
|
||||
this.refreshSelf();
|
||||
return true;
|
||||
} else {
|
||||
|
@ -291,9 +290,7 @@ NavigatorWidget.prototype.handleSaveTiddlerEvent = function(event) {
|
|||
this.saveStoryList(storyList);
|
||||
}
|
||||
// Send a notification event
|
||||
if(this.autosave === "yes") {
|
||||
this.dispatchEvent({type: "tw-auto-save-wiki"});
|
||||
}
|
||||
this.dispatchEvent({type: "tw-auto-save-wiki"});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue