mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 10:08:01 +02:00
Apply editable_height independent of the height attribute
This commit is contained in:
@ -242,7 +242,7 @@ var et2_htmlarea = (function(){ "use strict"; return et2_editableWidget.extend([
|
||||
{
|
||||
this.htmlNode = jQuery(document.createElement("textarea"))
|
||||
.val(value);
|
||||
if(this.options.height)
|
||||
if(this.options.height || this.options.editable_height)
|
||||
{
|
||||
this.htmlNode.css('height', (this.options.editable_height ? this.options.editable_height : this.options.height));
|
||||
}
|
||||
|
Reference in New Issue
Block a user