/* Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.editorConfig = function( config ) { config.skin = 'office2003'; config.language= 'pt-br'; config.enterMode = CKEDITOR.ENTER_DIV; config.shiftEnterMode= CKEDITOR.ENTER_P; config.font_defaultLabel = 'Arial'; config.fontSize_sizes = '8/8pt;9/9pt;10/10pt;11/11pt;12/12pt;14/14pt;16/16pt;18/18pt;20/20pt;22/22pt;24/24pt;26/26pt;28/28pt;36/36pt;48/48pt;72/72pt' ; // config.font_defaultLabel = 'Arial'; // config.fontSize_defaultLabel = '12px'; config.extraPlugins = 'autogrow,richcombo,expresso,keystrokes,aspell'; config.tabSpaces = 4; config.disableNativeSpellChecker = false; // Remove the resize plugin, as it doesn't make sense to use it in conjunction with the AutoGrow plugin. config.removePlugins = 'resize,scayt,menubutton,contextmenu'; config.toolbarCanCollapse = false; config.toolbar_mail = [ ['Font','FontSize','Bold','Italic','Underline','Strike','TextColor','BGColor','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','NumberedList','BulletedList','-','Undo','Redo','Link','Unlink','Anchor','-','Find','Replace','Outdent','Indent'], '/', ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Table','HorizontalRule','SpecialChar','expAddImage','expSignature','SpellCheck'] ]; config.toolbar_signature = [ ['Font','FontSize','Bold','Italic','Underline','Strike','TextColor','BGColor','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','NumberedList','BulletedList'], '/', ['Undo','Redo','Link','Unlink','Anchor','-','Outdent','Indent','-','Cut','Copy','Paste','PasteText','PasteFromWord','-','Table','HorizontalRule','SpecialChar','SpellCheck'] ]; };