Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Remove toolbar config merge

Latest
Compare
Choose a tag to compare
@BrockReece BrockReece released this 12 Apr 07:46
· 4 commits to master since this release

Previous to this release, your custom toolbar config would have been merged together with the default toolbar config, which made it difficult to remove default toolbar elements.

With this release, the following config will now produce a toolbar with exactly what it says on the tin (Bold, orderedList, unorderedList)

editorConfig: {
  modules: {
    toolbar: [
      ['bold'],
      [
        { 'list': 'ordered' }, { 'list': 'bullet' }
      ]
    ]
  },
  theme: 'snow'
}