/** * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. // For complete reference see: // http://docs.ckeditor.com/#!/api/CKEDITOR.config // The toolbar groups arrangement, optimized for a single toolbar row. config.toolbarGroups = [ { name: 'document', groups: [ 'mode', 'document', 'doctools' ] }, { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] }, { name: 'forms' }, { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] }, { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] }, { name: 'links' }, { name: 'insert' }, { name: 'styles' }, { name: 'colors' }, { name: 'tools' }, { name: 'others' }, { name: 'about' } ]; // The default plugins included in the basic setup define some buttons that // are not needed in a basic editor. They are removed here. //config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript'; config.removeButtons = 'Anchor,Subscript,Superscript'; // Dialog windows are also simplified. config.removeDialogTabs = 'link:advanced'; config.skin = 'office2013'; config.autoGrow_onStartup = true; //config.extraPlugins = 'justify,autosave,imagebrowser,image,filebrowser,popup,readmorebtn,table'; config.extraPlugins = 'sourcedialog,panel,button,listblock,floatpanel,richcombo,format,justify,imagebrowser,image,filebrowser,popup,readmorebtn,table'; config.imageBrowser_listUrl = '/data/imglist.json.php'; config.filebrowserBrowseUrl = '/data/uploads'; config.filebrowserUploadUrl = '/admin/upload'; config.format_tags = 'p;h2;h3;h4;pre'; };