1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-05-28 16:22:18 +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
+3 -1
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};