1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Fix problem that was stopping buttons being able to set tiddlers to the empty string

This commit is contained in:
Jeremy Ruston 2013-06-04 12:01:28 +01:00
parent ac879b165d
commit fb76ee5606

View File

@ -99,7 +99,7 @@ ButtonWidget.prototype.handleClickEvent = function(event) {
this.triggerPopup(event);
handled = true;
}
if(this.set && this.setTo) {
if(this.set) {
this.setTiddler();
handled = true;
}