| 123456789101112131415161718192021222324252627282930 |
- /**
- * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
- */
-
- CKEDITOR.editorConfig = function (config) {
- config.toolbarGroups = [
- {name: 'document', groups: ['mode', 'document', 'doctools']},
- {name: 'clipboard', groups: ['clipboard', 'undo']},
- {name: 'editing', groups: ['find', 'selection', 'spellchecker', 'editing']},
- {name: 'forms', groups: ['forms']},
- '/',
- {name: 'basicstyles', groups: ['basicstyles', 'cleanup']},
- {name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi', 'paragraph']},
- {name: 'links', groups: ['links']},
- {name: 'insert', groups: ['insert']},
- '/',
- {name: 'styles', groups: ['styles']},
- {name: 'colors', groups: ['colors']},
- {name: 'tools', groups: ['tools']},
- {name: 'others', groups: ['others']},
- {name: 'about', groups: ['about']}
- ];
-
- config.removeButtons = 'Source,Save,NewPage,ExportPdf,Preview,Print,Templates,Language,BidiRtl,BidiLtr,Flash,PageBreak,About';
- config.filebrowserUploadUrl = '/Manage/FileUpload';
- config.extraPlugins = 'autogrow';
- config.autoGrow_minHeight = 250;
- config.autoGrow_maxHeight = 600;
- };
|