Merge pull request #7054 from ssmarco/bugfix/1831-TinyMCE-WYSIWYG-loses-height

Initially set a default height for the html editor to 350px
This commit is contained in:
Chris Joe 2017-07-31 21:33:00 +12:00 committed by GitHub
commit f05d456b84

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'
];
}