mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-08-05 05:13:52 +00:00
Fix problem with default text handling in edit-text widget
This commit is contained in:
parent
9e3618bdcf
commit
8084837f48
@ -95,7 +95,9 @@ EditTextWidget.prototype.getEditInfo = function() {
|
|||||||
value = "";
|
value = "";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
value = this.editDefault;
|
if(this.editDefault) {
|
||||||
|
value = this.editDefault;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return {tiddler: tiddler, value: value};
|
return {tiddler: tiddler, value: value};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user