Skip to content

Commit

Permalink
Simplified editor UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoerr committed Oct 31, 2024
1 parent dba4520 commit de194a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/code/Magento/Cms/Model/Wysiwyg/DefaultConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public function getConfig(\Magento\Framework\DataObject $config) : \Magento\Fram
$config->addData([
'tinymce' => [
'toolbar' => 'blocks | fontfamily fontsizeinput lineheight | forecolor backcolor | '
. 'bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | '
. 'bullist numlist outdent indent | link table image | charmap emoticons',
. 'bold italic underline | alignleft aligncenter alignright alignjustify | '
. 'bullist numlist | link image',
'plugins' => implode(
' ',
[
Expand All @@ -62,7 +62,8 @@ public function getConfig(\Magento\Framework\DataObject $config) : \Magento\Fram
'content_css' => $this->assetRepo->getUrl('mage/adminhtml/wysiwyg/tiny_mce/themes/ui.css'),
],
'settings' => [
'menubar' => true,
'menubar' => 'edit insert view format table help',
'statusbar' => false,
'image_advtab' => true,
'promotion' => false,
],
Expand Down

0 comments on commit de194a0

Please sign in to comment.