2009-10-10 00:15:12 -07:00
|
|
|
|
/*
|
2011-05-16 20:19:32 -07:00
|
|
|
|
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
2009-10-10 00:15:12 -07:00
|
|
|
|
For licensing, see LICENSE.html or http://ckeditor.com/license
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
CKEDITOR.plugins.add( 'about',
|
|
|
|
|
|
{
|
2010-04-26 18:15:27 -07:00
|
|
|
|
requires : [ 'dialog' ],
|
2009-10-10 00:15:12 -07:00
|
|
|
|
init : function( editor )
|
|
|
|
|
|
{
|
|
|
|
|
|
var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
|
|
|
|
|
|
command.modes = { wysiwyg:1, source:1 };
|
|
|
|
|
|
command.canUndo = false;
|
2011-05-16 20:19:32 -07:00
|
|
|
|
command.readOnly = 1;
|
2009-10-10 00:15:12 -07:00
|
|
|
|
|
|
|
|
|
|
editor.ui.addButton( 'About',
|
|
|
|
|
|
{
|
|
|
|
|
|
label : editor.lang.about.title,
|
|
|
|
|
|
command : 'about'
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|