mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Apply editable_height independent of the height attribute
This commit is contained in:
parent
06ffd20aa8
commit
a7bfd5c871
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user