mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
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:
parent
1facb509a4
commit
69a8659a3d
@ -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');
|
||||
|
@ -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,
|
||||
)
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user