We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e492e commit 73952fbCopy full SHA for 73952fb
lib/web/mage/adminhtml/wysiwyg/tiny_mce/tinymce5Adapter.js
@@ -196,7 +196,7 @@ define([
196
selector: '#' + this.getId(),
197
theme: 'silver',
198
skin: 'oxide',
199
- toolbar_mode: 'wrap',
+ 'toolbar_mode': 'wrap',
200
'entity_encoding': 'raw',
201
'convert_urls': false,
202
'content_css': this.config.tinymce['content_css'],
@@ -273,8 +273,8 @@ define([
273
settings.skin = this.config.skin;
274
}
275
276
- if (this.config.toolbar_mode) {
277
- settings.toolbar_mode = this.config.toolbar_mode;
+ if (this.config['toolbar_mode']) {
+ settings['toolbar_mode'] = this.config['toolbar_mode'];
278
279
280
if (this.config.baseStaticUrl && this.config.baseStaticDefaultUrl) {
0 commit comments