/** * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html * or http://ckeditor.com/license */ CKEDITOR.editorConfig = function(config) { config.language = 'cs'; config.baseFloatZIndex = 1000000; config.resize_enabled = false; config.removePlugins = 'autogrow,resize,elementspath,div'; config.entities = false; config.extraPlugins = 'nbsp'; config.skin = 'moono'; config.toolbar = 'Full'; config.allowedContent = true; config.toolbar_Full = [ { name : 'tools', items : [ 'Maximize' ] }, { name : 'document', items : [ 'Source', '-', 'DocProps', 'Preview' ] }, { name : 'clipboard', items : [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] }, { name : 'editing', items : [ 'Find', 'Replace', '-', 'SelectAll' ] }, { name : 'links', items : [ 'Link', 'Unlink' ] }, { name : 'insert', items : [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar' ] }, { name : 'basicstyles', items : [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] }, { name : 'paragraph', items : [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock' ] }, { name : 'styles', items : [ 'Font', 'FontSize' ] } ]; };