ACC SHELL
/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
// Define changes to default configuration here. For example:
config.language = 'cs';
config.entities = false;
config.entities_greek = false;
config.entities_latin = false;
config.htmlEncodeOutput = false;
config.ignoreEmptyParagraph = false;
config.image_removeLinkByEmptyURL = false;
config.fillEmptyBlocks = false;
config.enterMode = CKEDITOR.ENTER_BR;
config.theme = 'default';
config.filebrowserBrowseUrl = '3rdparty/filemanager/index.html';
config.extraPlugins = 'MediaEmbed';
config.toolbar_Full =
[
['Source','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
'/',
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['BidiLtr', 'BidiRtl' ],
['Link','Unlink','Anchor'],
['Image','MediaEmbed','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['Maximize', 'ShowBlocks']
];
config.toolbar_Basic =
[
['Styles', 'Format'],
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList']
];
//config.contentsCss = ['/css/style-base.css', '/css/anotherfile.css'];
};
ACC SHELL 2018