国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
1.1KB

  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.editorConfig = function (config) {
  6. config.toolbarGroups = [
  7. { name: 'mode', groups: ['mode', 'document', 'doctools'] },
  8. { name: 'cleanup', groups: ['undo', 'cleanup'] },
  9. { name: 'styles', groups: ['styles'] },
  10. { name: 'colors', groups: ['colors'] },
  11. { name: 'paragraph', groups: ['align', 'paragraph', 'textindent', 'indent'] },
  12. { name: 'basicstyles', groups: ['basicstyles', 'list','blocks'] },
  13. { name: 'editing', groups: ['find', 'selection', 'editing'] },
  14. { name: 'links', groups: ['links'] },
  15. { name: 'insert', groups: ['insert'] },
  16. ];
  17. config.height = 360;
  18. config.removePlugins = 'exportpdf,div,scayt';
  19. config.extraPlugins = 'html5video,dedepagebreak,textindent';
  20. config.removeButtons = 'Save,Styles,Font,NewPage,Print,Preview,Templates,Smiley,About,ShowBlocks,Iframe,Flash,Form,Checkbox,Radio,TextField,Textarea,Select,Button,ImageButton,HiddenField';
  21. };