config_0426.js 1.4 KB

12345678910111213141516171819202122232425
  1. /**
  2. * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.config.extraPlugins = "base64image";
  6. CKEDITOR.editorConfig = function( config ) {
  7. config.toolbarGroups = [
  8. { name: 'document', groups: [ 'document', 'doctools', 'mode' ] },
  9. { name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
  10. { name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
  11. { name: 'forms', groups: [ 'forms' ] },
  12. { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
  13. { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
  14. { name: 'links', groups: [ 'links' ] },
  15. { name: 'insert', groups: [ 'insert' ] },
  16. { name: 'styles', groups: [ 'styles' ] },
  17. { name: 'colors', groups: [ 'colors' ] },
  18. { name: 'tools', groups: [ 'tools' ] },
  19. { name: 'others', groups: [ 'others' ] },
  20. { name: 'about', groups: [ 'about' ] }
  21. ];
  22. config.removeButtons = 'EasyImageUpload,Source,Templates,Save,NewPage,ExportPdf,Preview,Print,Cut,Copy,Paste,PasteText,PasteFromWord,Find,Replace,SelectAll,Scayt,Form,Checkbox,Radio,TextField,Select,Textarea,Button,ImageButton,HiddenField,Blockquote,CreateDiv,BidiLtr,BidiRtl,Language,Anchor,Flash,Image,HorizontalRule,Smiley,SpecialChar,PageBreak,Iframe,Table,Maximize,ShowBlocks,About';
  23. };