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.
2 parents 87d09be + 73952fb commit 4d0acf2Copy full SHA for 4d0acf2
lib/web/mage/adminhtml/wysiwyg/tiny_mce/tinymce5Adapter.js
@@ -196,6 +196,7 @@ define([
196
selector: '#' + this.getId(),
197
theme: 'silver',
198
skin: 'oxide',
199
+ 'toolbar_mode': 'wrap',
200
'entity_encoding': 'raw',
201
'convert_urls': false,
202
'content_css': this.config.tinymce['content_css'],
@@ -272,6 +273,10 @@ define([
272
273
settings.skin = this.config.skin;
274
}
275
276
+ if (this.config['toolbar_mode']) {
277
+ settings['toolbar_mode'] = this.config['toolbar_mode'];
278
+ }
279
+
280
if (this.config.baseStaticUrl && this.config.baseStaticDefaultUrl) {
281
settings['document_base_url'] = this.config.baseStaticUrl;
282
0 commit comments