File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
dev/tests/static/testsuite/Magento/Test/Js/_files/eslint
lib/web/mage/adminhtml/wysiwyg/tiny_mce Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 22 "rules": {
33 'no-restricted-syntax': [
44 'error',
5- {
6- message: "addCommand is removed. Update code to be compatible with tinymce5",
7- selector: "CallExpression[callee.object.name='editor'][callee.property.name='addCommand']"
8- },
95 {
106 message: "addButton is removed. Update code to be compatible with tinymce5",
117 selector: "CallExpression[callee.object.name='editor'][callee.property.name='addButton']"
Original file line number Diff line number Diff line change @@ -269,6 +269,9 @@ define([
269269 }
270270 } ;
271271
272+ // Set default initial height
273+ settings [ 'min_height' ] = this . config . tinymce [ 'min_height' ] ? this . config . tinymce [ 'min_height' ] : 250 ;
274+
272275 if ( this . config . skin ) {
273276 settings . skin = this . config . skin ;
274277 }
You can’t perform that action at this time.
0 commit comments