You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
934 B

CKEDITOR.editorConfig = function (config) {
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.toolbarCanCollapse = true;
config.toolbar = 'NNToolbar';
config.shiftEnterMode = CKEDITOR.ENTER_P;
config.enterMode = CKEDITOR.ENTER_BR;
//config.height = 600;
config.toolbar_NNToolbar =
[
['Source', 'Templates'],
['Cut', 'Copy', 'Paste', 'SpellChecker', '-', 'Scayt'],
['Undo', 'Redo', '-', 'Find', 'Replace'],
['Image', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'],
['Bold', 'Italic', 'Underline', 'Strike', '-', 'Subscript', 'Superscript'],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote', 'SelectAll', 'RemoveFormat'],
['Styles', 'Format', 'Font', 'FontSize'],
['TextColor', 'BGColor']
];
//config.toolbarStartupExpanded = false;
};