1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Fix problem with codemirror plugin and handling of ordinary input fields

This commit is contained in:
Jeremy Ruston 2013-10-30 14:28:20 +00:00
parent 8084837f48
commit 693d1803bf

View File

@ -45,7 +45,7 @@ EditTextWidget.prototype.updateEditor = function(text) {
this.codemirrorInstance.setValue(text);
}
} else {
this.updateEditorDomNode();
this.updateEditorDomNode(this.getEditInfo().value);
}
};