1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-22 23:16:53 +00:00

Fix problem with default text handling in edit-text widget

This commit is contained in:
Jeremy Ruston 2013-10-30 14:27:55 +00:00
parent 9e3618bdcf
commit 8084837f48

View File

@ -95,7 +95,9 @@ EditTextWidget.prototype.getEditInfo = function() {
value = "";
break;
}
value = this.editDefault;
if(this.editDefault) {
value = this.editDefault;
}
}
}
return {tiddler: tiddler, value: value};