Files
kasu/htdocs/js/ckeditor/config.js

39 lines
1.4 KiB
JavaScript

/**
* @license Copyright (c) 2003-2013, 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 the complete reference:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
config.language = 'de';
config.allowedContent = true;
config.contentsCss = '/static/css/common.css';
// The toolbar groups arrangement, optimized for two toolbar rows.
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'insert' },
{ name: 'links' },
'/',
{ name: 'styles' },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'tools' }
];
// Remove some buttons, provided by the standard plugins, which we don't
// need to have in the Standard(s) toolbar.
config.removeButtons = 'Underline,Subscript,Superscript';
config.scayt_sLang = 'de_DE';
// Se the most common block elements.
config.format_tags = 'p;h2;h3;h4;h5;h6;pre;address;div';
// Make dialogs simpler.
config.removeDialogTabs = 'image:advanced;link:advanced';
};