mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-21 14:22:44 +00:00
Monotone-Parent: 5f9c08dd6b5b34d815ddb2108abbf4055e846934 Monotone-Revision: b2cf7eda0ef8f15fb6e78f8c38a7406a47bcdd2f Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-08-26T14:03:12 Monotone-Branch: ca.inverse.sogo
18 lines
593 B
JavaScript
18 lines
593 B
JavaScript
/*
|
|
Copyright (c) 2003-2009, 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 example:
|
|
// config.language = 'fr';
|
|
config.skin = 'kama';
|
|
//TODO: This should work to remove the bottom DOM information, but doesn't
|
|
// This way is on an instance of the config object
|
|
config.removePlugins = "elementspath,kplahj";
|
|
};
|
|
|
|
// This way is global / static
|
|
CKEDITOR.config.removePlugins = "elementspath,kplahj";
|