Perf: ckeditor was seriously slowing everything. So now we use the ckeditor basic to load it only when required.

This commit is contained in:
Laurent Destailleur
2011-07-06 12:44:51 +00:00
parent dd48f6d58e
commit df35b7fcf2
520 changed files with 122182 additions and 384 deletions

View File

@@ -0,0 +1,24 @@
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'about',
{
requires : [ 'dialog' ],
init : function( editor )
{
var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
command.modes = { wysiwyg:1, source:1 };
command.canUndo = false;
command.readOnly = 1;
editor.ui.addButton( 'About',
{
label : editor.lang.about.title,
command : 'about'
});
CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
}
});