sogo/UI/WebServerResources/ckeditor/config.js

39 lines
1.6 KiB
JavaScript
Raw Normal View History

2013-01-15 23:46:19 +01:00
/**
2013-06-06 19:21:26 +02:00
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
2013-01-15 23:46:19 +01:00
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// For the complete reference:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
config.toolbarGroups = [
{ name: 'basicstyles', groups: [ 'basicstyles' ] },
{ name: 'colors' },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'editing', groups: [ 'spellchecker' ] },
{ name: 'styles' },
{ name: 'mode' }
];
2013-01-15 23:46:19 +01:00
config.removeButtons = 'Strike,Subscript,Superscript,BGColor,Anchor,Format';
config.removeDialogTabs = 'link:advanced;image:advanced';
config.enterMode = CKEDITOR.ENTER_BR;
config.tabSpaces = 4;
config.allowedContent = true; // don't filter tags
2013-06-06 19:21:26 +02:00
// Disables the built-in words spell checker if browser provides one. Defaults to true.
// http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-disableNativeSpellChecker
//config.disableNativeSpellChecker = false;
2013-06-06 19:21:26 +02:00
// Whether to show the browser native context menu when the Ctrl or Meta (Mac) key is pressed on opening the context
// menu with the right mouse button click or the Menu key. Defaults to true.
// http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-browserContextMenuOnCtrl
//config.browserContextMenuOnCtrl = false;
2013-06-06 19:21:26 +02:00
// If enabled, turns on SCAYT automatically after loading the editor. Defaults to false.
// http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-scayt_autoStartup
//config.scayt_autoStartup = true;
2013-01-15 23:46:19 +01:00
};