/* Copyright (c) 2003-2011, 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 = 'it'; //config.uiColor = '#AADC6E'; config.startupMode = 'wysiwyg'; config.startupFocus = false; config.extraPlugins='appagebreak'; /* config.filebrowserBrowseUrl = 'inc/ckeditor/filemanager/browse.php?type=files'; config.filebrowserImageBrowseUrl = 'inc/ckeditor/filemanager/browse.php?type=images'; config.filebrowserFlashBrowseUrl = 'inc/ckeditor/filemanager/browse.php?type=flash'; config.filebrowserUploadUrl = 'inc/ckeditor/filemanager/upload.php?type=files'; config.filebrowserImageUploadUrl = 'inc/ckeditor/filemanager/upload.php?type=images'; config.filebrowserFlashUploadUrl = 'inc/ckeditor/filemanager/upload.php?type=flash'; */ config.toolbar_Basic = [ [ 'Source', '-', 'Bold', 'Italic','Underline' ] ]; config.toolbar_Medium = [ [ 'Source', '-', 'Bold','Italic','Underline' ], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], '/', ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], ['Image','Flash','Table','HorizontalRule','SpecialChar'], ['TextColor','BGColor'] ]; config.toolbar_Forum = [ [ 'Source', '-', 'Bold','Italic','Underline' ], ['TextColor','BGColor'], ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], ['Image','jwplayer','Smiley','HorizontalRule'], ['Link','Unlink'] ]; // This is actually the default value. 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'], ['Link','Unlink','Anchor'], ['Image','jwplayer','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], '/', ['Styles','Format','Font','FontSize'], ['TextColor','BGColor'], ['Maximize', 'ShowBlocks','-','About'], ['appagebreak'] ]; };