cmc-sales/webroot/js/ckeditor/_source/plugins/about/plugin.js

25 lines
619 B
JavaScript
Raw Normal View History

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',
{
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' );
}
});