Arek Wtykło

Konfiguracja CKEditora 4.7.2

Showing 1 changed file with 12 additions and 0 deletions
... ... @@ -4,6 +4,18 @@
*/
CKEDITOR.editorConfig = function( config ) {
config.toolbar = [
{name: 'document', items: ['Source']},
{name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']},
{name: 'links', items: ['Link', 'Unlink', 'Anchor']},
{name: 'styles', items: ['Format', 'Font', 'FontSize']},
'/',
{name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike', 'RemoveFormat', '-', 'TextColor', 'BGColor', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock']},
{name: 'paragraph', items: ['NumberedList', 'BulletedList', 'Outdent', 'Indent']},
{name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'Smiley', 'Iframe']},
];
config.disableNativeSpellChecker = false;
config.extraPlugins = 'autolink';
};
... ...