1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| CKEDITOR.editorConfig = function( config )
{
//config.language = 'hu';
config.format_tags = 'p;h2;h3;h4;h5;h6';
};
CKEDITOR.config.toolbar_Full =
[
['Source'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'Templates'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
'/',
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
'/',
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar'],
['Format','FontSize'],
['TextColor','BGColor']
]; |
Partager