13 lines
620 B
JavaScript
13 lines
620 B
JavaScript
|
CKEDITOR.editorConfig = function(config) {
|
||
|
config.resize_enabled = false;
|
||
|
config.toolbar = 'MyToolbar';
|
||
|
config.toolbar_MyToolbar =
|
||
|
[
|
||
|
{ name: 'styles', items : [ 'Styles','Format','Font','FontSize' ] },
|
||
|
{ name: 'colors', items : [ 'TextColor','BGColor' ] },
|
||
|
{ name: 'clipboard', items : [ 'Undo','Redo' ] },
|
||
|
{ name: 'basicstyles', items : [ 'Bold','Italic','Underline','Strike','Subscript','Superscript','-','RemoveFormat' ] },
|
||
|
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock' ] },
|
||
|
];
|
||
|
};
|