Try to fix tracker comments with not enough height

This commit is contained in:
nathangray 2019-06-05 10:48:24 -06:00
parent 914de29859
commit c2f7e2ab97

View File

@ -94,8 +94,11 @@ var et2_htmlarea = (function(){ "use strict"; return et2_editableWidget.extend([
this.editor = null; // TinyMce editor instance
this.supportedWidgetClasses = []; // Allow no child widgets
this.htmlNode = jQuery(document.createElement(this.options.readonly ? "div" : "textarea"))
.css('height', this.options.height)
.addClass('et2_textbox_ro');
if(this.options.height)
{
this.htmlNode.css('height', this.options.height);
}
this.setDOMNode(this.htmlNode[0]);
},