ENHANCEMENT Using 'autoresize' TinyMCE plugin in HTMLEditorField default config, in order to save space when no content is entered into the field

This commit is contained in:
Ingo Schommer 2012-03-07 10:59:03 +01:00
parent 1facb509a4
commit 69a8659a3d
2 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,7 @@ HtmlEditorConfig::get('cms')->setOptions(array(
'extended_valid_elements' => "img[class|src|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|usemap],iframe[src|name|width|height|align|frameborder|marginwidth|marginheight|scrolling],object[width|height|data|type],param[name|value],map[class|name|id],area[shape|coords|href|target|alt]"
));
HtmlEditorConfig::get('cms')->enablePlugins('media', 'fullscreen');
HtmlEditorConfig::get('cms')->enablePlugins('media', 'fullscreen', 'autoresize');
HtmlEditorConfig::get('cms')->enablePlugins(array('ssbuttons' => '../../../cms/javascript/tinymce_ssbuttons/editor_plugin_src.js'));
HtmlEditorConfig::get('cms')->insertButtonsBefore('formatselect', 'styleselect');

View File

@ -13,7 +13,7 @@ class HtmlEditorField extends TextareaField {
*/
static $use_gzip = true;
protected $rows = 30;
protected $rows = null;
/**
* Includes the JavaScript neccesary for this field to work using the {@link Requirements} system.
@ -83,7 +83,6 @@ class HtmlEditorField extends TextareaField {
parent::getAttributes(),
array(
'tinymce' => 'true',
'style' => 'width: 97%; height: ' . ($this->rows * 16) . 'px', // prevents horizontal scrollbars
'value' => null,
)
);