12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.html or http://ckeditor.com/license
- */
- CKEDITOR.editorConfig = function( config )
- {
- //config.customConfig // to ovveride config.js
- // The language will be set from within iTop, depending on the current user
- // config.language = 'de'; // german
- // config.contentsLanguage = 'de'; // german
- // Make it more concise for iTop forms
- config.removePlugins = 'elementspath';
- config.toolbarStartupExpanded = false;
- config.toolbar = 'itop';
- //config.toolbar_basic
- //config.toolbar_Full
- config.toolbar_itop =
- [
- ['Source'],
- ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print'],
- ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
- '/',
- ['Bold','Italic','Underline','Strike'],
- ['NumberedList','BulletedList','-','Outdent','Indent'],
- ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
- ['Link','Unlink','Anchor'],
- ['Image','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
- '/',
- ['Styles','Format','Font','FontSize'],
- ['TextColor','BGColor'],
- ['Maximize', 'ShowBlocks','-','About']
- ];
- 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','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
- '/',
- ['Styles','Format','Font','FontSize'],
- ['TextColor','BGColor'],
- ['Maximize', 'ShowBlocks','-','About']
- ];
- // Little value and even disturbing when it comes to describing very technical stuff
- config.disableNativeSpellChecker = true;
- // Handling of doc/image uploads
- // config.filebrowserImageUploadUrl
- // config.filebrowserUploadUrl
- // + it is possible to define the supported tags (p, pre, etc) and the corresponding class.
- };
|