Update ckeditor to version 4.0.1

This commit is contained in:
Francis Lachapelle
2013-01-15 17:46:19 -05:00
parent 8ce4b89656
commit 6c3ec9836c
330 changed files with 1503 additions and 1881 deletions
+20 -13
View File
@@ -1,13 +1,20 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config )
{
config.uiColor = '#D4D0C8';
config.skin = 'kama';
config.removePlugins = "elementspath,maximize,resize";
config.scayt_autoStartup = false;
config.enterMode = CKEDITOR.ENTER_BR;
};
/**
* @license Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
config.toolbarGroups = [
{ name: 'basicstyles', groups: [ 'basicstyles' ] },
{ name: 'paragraph', groups: [ 'list', 'align' ] },
{ name: 'links' },
{ name: 'insert' },
['Font', 'FontSize'],
{ name: 'colors' },
['SpellChecker','Scayt']
];
config.removeButtons = 'Anchor,Underline,Strike,Subscript,Superscript';
config.removeDialogTabs = 'link:advanced';
config.enterMode = CKEDITOR.ENTER_BR;
};