Datenstand V1.0
This commit is contained in:
33
ckeditor/config.js
Normal file
33
ckeditor/config.js
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
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.toolbar_Basic =
|
||||
[
|
||||
[ 'Bold', 'Italic' ],
|
||||
[ 'Cut', 'Copy', 'Paste', '-', '-', 'Scayt'],
|
||||
[ 'Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat']
|
||||
];
|
||||
config.toolbar = 'Basic';
|
||||
config.forcePasteAsPlainText = true;
|
||||
config.toolbarCanCollapse = false;
|
||||
config.skin = 'office2003';
|
||||
config.forceSimpleAmpersand = true;
|
||||
config.contentsLanguage = 'de';
|
||||
config.defaultLanguage = 'de';
|
||||
config.scayt_sLang = 'de_DE';
|
||||
config.enterMode = CKEDITOR.ENTER_P;
|
||||
config.entities = false;
|
||||
config.entities_latin = false;
|
||||
config.startupOutlineBlocks = false;
|
||||
config.coreStyles_italic = { element: 'em', overrides : 'i' };
|
||||
config.coreStyles_italic = { element: 'em', overrides : 'span' };
|
||||
config.coreStyles_bold = { element: 'strong', overrides : 'b' };
|
||||
config.coreStyles_bold = { element: 'strong', overrides : 'span' };
|
||||
config.removePlugins = 'elementspath';
|
||||
config.resize_enabled = false;
|
||||
config.width = '800';
|
||||
};
|
||||
Reference in New Issue
Block a user