Fix Bug 35408.

This commit is contained in:
Julia Radzhabova 2017-08-11 17:41:15 +03:00
parent 948bb630bf
commit 43cf61dc71

View file

@ -759,7 +759,8 @@ define([
}, },
loadText: function () { loadText: function () {
if (this.textVal && this.commentsView) { if (this.textVal && this.commentsView) {
this.commentsView.getTextBox().val(this.textVal); var textBox = this.commentsView.getTextBox();
textBox && textBox.val(this.textVal);
} }
}, },
getEditText: function () { getEditText: function () {