Commit c51f4393 authored by Julia Radzhabova's avatar Julia Radzhabova

Fix Bug 35408.

parent 2fea6099
......@@ -759,7 +759,8 @@ define([
},
loadText: function () {
if (this.textVal && this.commentsView) {
this.commentsView.getTextBox().val(this.textVal);
var textBox = this.commentsView.getTextBox();
textBox && textBox.val(this.textVal);
}
},
getEditText: function () {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment