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 2
2
"rules": {
3
3
'no-restricted-syntax': [
4
4
'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
- },
9
5
{
10
6
message: "addButton is removed. Update code to be compatible with tinymce5",
11
7
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([
269
269
}
270
270
} ;
271
271
272
+ // Set default initial height
273
+ settings [ 'min_height' ] = this . config . tinymce [ 'min_height' ] ? this . config . tinymce [ 'min_height' ] : 250 ;
274
+
272
275
if ( this . config . skin ) {
273
276
settings . skin = this . config . skin ;
274
277
}
You can’t perform that action at this time.
0 commit comments