CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. // For the complete reference: // http://docs.ckeditor.com/#!/api/CKEDITOR.config config.extraPlugins = 'button'; config.extraPlugins = 'panelbutton'; config.extraPlugins = 'floatpanel'; config.extraPlugins = 'colorbutton'; config.extraPlugins = 'font'; config.extraPlugins = 'justify'; config.removePlugins = 'find'; config.toolbar=[ ['Source'], ['PasteText','PasteFromWord'], ['Undo','Redo','-','Find','Replace'], ['HorizontalRule','SpecialChar'], ['Format','TextColor','FontSize'], ['Bold','Italic', 'Underline'], ['JustifyLeft', 'JustifyCenter','JustifyRight', '-', 'JustifyBlock'], ['NumberedList','BulletedList','-','Outdent','Indent'], ['Link','Unlink','Anchor'] ]; config.entities = false; config.toolbarCanCollapse = true; config.resize_enabled = false; config.autoGrow_maxHeight = 850; };