Arek Wtykło

Headline toolbar

@@ -16,6 +16,12 @@ CKEDITOR.editorConfig = function( config ) { @@ -16,6 +16,12 @@ CKEDITOR.editorConfig = function( config ) {
16 {name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'Smiley', 'Iframe']}, 16 {name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'Smiley', 'Iframe']},
17 ]; 17 ];
18 18
  19 + config.toolbar_Headline = [
  20 + {name: 'clipboard', items: ['Cut', 'Copy', 'Paste', '-', 'Undo', 'Redo']},
  21 +
  22 + {name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'RemoveFormat', '-', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']},
  23 + ];
  24 +
19 config.disableNativeSpellChecker = false; 25 config.disableNativeSpellChecker = false;
20 config.extraPlugins = 'autolink,image2,widget,widgetselection,lineutils,nbsp'; 26 config.extraPlugins = 'autolink,image2,widget,widgetselection,lineutils,nbsp';
21 }; 27 };