config.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
  3. * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.editorConfig = function( config ) {
  6. // Define changes to default configuration here. For example:
  7. // config.language = 'fr';
  8. // config.uiColor = '#AADC6E';
  9. config.autoParagraph = false;
  10. config.removeDialogTabs = 'image:advanced;image:Link';
  11. config.extraPlugins = 'uploadimage,editorplaceholder';
  12. config.filebrowserImageUploadUrl = '/api/mail/file/cache_image_file';
  13. config.uploadUrl = '/api/mail/file/cache_image_file';
  14. config.versionCheck = false;
  15. config.toolbar_Mini = [
  16. ['Bold','Italic','Underline','Strike','-','Image','NumberedList','BulletedList','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','TextColor','BGColor'],
  17. ['Styles','Format','Font','FontSize'],
  18. ];
  19. config.toolbar_Full = [
  20. ['Source','-','Save','NewPage','Preview','-','Templates'],
  21. ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
  22. ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
  23. ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
  24. '/',
  25. ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
  26. ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
  27. ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
  28. ['Link','Unlink','Anchor'],
  29. ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
  30. '/',
  31. ['Styles','Format','Font','FontSize'],
  32. ['TextColor','BGColor']
  33. ]
  34. };