config-editor.js 407 B

12345678910111213141516171819202122232425
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. module.exports = {
  7. toolbar: [
  8. 'headings',
  9. 'bold',
  10. 'italic',
  11. 'link',
  12. 'unlink',
  13. 'bulletedList',
  14. 'numberedList',
  15. 'blockQuote',
  16. 'undo',
  17. 'redo'
  18. ],
  19. image: {
  20. toolbar: [ 'imageStyleFull', 'imageStyleSide', '|' , 'imageTextAlternative' ]
  21. }
  22. };