Remove extraneous autosave attribute from navigator widget

Inadvertently committed.
print-window-tiddler
Jermolene 2014-02-07 10:12:45 +00:00
rodzic 2758e586bd
commit f0d512edf0
1 zmienionych plików z 2 dodań i 5 usunięć

Wyświetl plik

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