Commit 03cb1338 by Scott

Rearrange CKEditor toolbar, remove clipboard buttons

parent 08d7f724
......@@ -9,16 +9,15 @@ CKEDITOR.editorConfig = function( config ) {
// The toolbar arrangement, two rows of buttons
config.toolbar = [
{ name: 'basic', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] },
{ name: 'color', items: [ 'TextColor', 'BGColor' ] },
{ name: 'align', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
{ name: 'font', items: [ 'Font', 'FontSize', 'Format' ] },
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', 'Outdent', 'Indent', 'Blockquote' ] },
{ name: 'align', items: [ 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] },
'/',
{ name: 'paragraph', items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote' ] },
{ name: 'basic', items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript' ] },
{ name: 'color', items: [ 'TextColor', 'BGColor' ] },
{ name: 'links', items: [ 'Link', 'Unlink' ] },
{ name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar', 'Smiley' ] },
{ name: 'clipboard', items: [ 'Cut', 'Copy', '-', 'Undo', 'Redo' ] },
{ name: 'last', items: [ 'RemoveFormat', 'Maximize' ] }
{ name: 'last', items: [ 'Undo', 'Redo', 'RemoveFormat', 'Maximize' ] }
];
// Set the most common block elements
......@@ -33,5 +32,4 @@ CKEDITOR.editorConfig = function( config ) {
// Prevent blank paragraphs
config.fillEmptyBlocks = false;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment