Accepts blank test in editor value getter/setter

This commit is contained in:
Fernando Mendes 2015-07-21 14:28:36 +01:00
parent 586f49d64a
commit 709a51af19

View file

@ -724,11 +724,11 @@ SimpleMDE.prototype.createStatusbar = function(status) {
* Get or set the text content.
*/
SimpleMDE.prototype.value = function(val) {
if (val) {
if (val === undefined) {
return this.codemirror.getValue();
} else {
this.codemirror.getDoc().setValue(val);
return this;
} else {
return this.codemirror.getValue();
}
};