﻿/*
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 = 'PL';
	 //config.uiColor = '#AADC6E';
	 config.resize_maxWidth = 720;
	 config.resize_minWidth = 719;
	 config.resize_minHeight = 500;
	 config.scayt_autoStartup = false;
	 config.scayt_sLang = 'pl_PL';
	 
	 config.toolbar = 'Full';
	 
	 config.toolbar_Full =
	 [
	     ['Source','-','NewPage','Preview','-','Templates'],
	     ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
	     ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
	     '/',
	     ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
	     ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
	     ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
	     ['BidiLtr', 'BidiRtl'],
	     ['Link','Unlink','Anchor'],
	     ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe'],
	     '/',
	     ['Styles','Format','Font','FontSize'],
	     ['TextColor','BGColor'],
	     ['Maximize', 'ShowBlocks']
	 ];
	  
	 config.toolbar_Basic =
	 [
	     ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
	 ];

	 
};

