1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 23:10:46 +00:00

Fix checkbox widget to update modified and modifier fields

This commit is contained in:
Jeremy Ruston 2013-10-29 21:20:59 +00:00
parent 654f48b14d
commit d42fb673f8

View File

@ -70,7 +70,7 @@ CheckboxWidget.prototype.handleChangeEvent = function(event) {
if(checked) {
newTags.push(this.checkboxTag);
}
this.wiki.addTiddler(new $tw.Tiddler(tiddler,{tags: newTags}));
this.wiki.addTiddler(new $tw.Tiddler(tiddler,{tags: newTags},this.wiki.getModificationFields()));
}
};