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

Simplify action-setfield widget

This commit is contained in:
Jermolene 2014-11-06 18:23:59 +00:00
parent 0a2a5184c4
commit efeeab45f8

View File

@ -57,21 +57,7 @@ SetFieldWidget.prototype.refresh = function(changedTiddlers) {
Invoke the action associated with this widget
*/
SetFieldWidget.prototype.invokeAction = function(triggeringWidget,event) {
var newFields = {};
if(this.actionIndex) {
var data = self.wiki.getTiddlerData(this.actionTiddler,{});
if(data[self.editIndex] !== value) {
data[self.editIndex] = value;
this.wiki.setTiddlerData(self.actionTiddler,data);
}
} else {
var tiddler = this.wiki.getTiddler(this.actionTiddler),
updateFields = {
title: this.actionTiddler
};
updateFields[this.editField || "text"] = this.actionValue;
this.wiki.addTiddler(new $tw.Tiddler(this.wiki.getCreationFields(),tiddler,updateFields,this.wiki.getModificationFields()));
}
this.wiki.setText(this.actionTiddler,this.actionField,this.actionIndex,this.actionValue);
return true; // Action was invoked
};