Initially set a default height for the html editor to 350px

This commit is contained in:
vagrant 2017-06-23 17:23:06 +12:00 committed by Marco Hermo
parent 9392380dd1
commit f02949fc09

View File

@ -331,7 +331,8 @@ class TinyMCEConfig extends HTMLEditorConfig
{
return [
'data-editor' => 'tinyMCE', // Register ss.editorWrappers.tinyMCE
'data-config' => Convert::array2json($this->getConfig())
'data-config' => Convert::array2json($this->getConfig()),
'style' => 'height:350px'
];
}