|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Image plugin
*/
CKEDITOR.plugins.add( 'addon',
{
init : function( editor )
{
var pluginName = 'addon';
// Register the dialog.
CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/addon.js' );
// Register the command.
editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) );
// Register the toolbar button.
editor.ui.addButton( 'Addon',
{
label : '附件',
icon : 'http://desdevcms.com/images/addon.gif',
command : pluginName
});
}
} );
|