熊猫办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
626 B

( function() {
CKEDITOR.plugins.add('etranfile',
{
init: function(editor)
{
//plugin code goes here
var pluginName = 'etranfile';
CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/etranfile.js');
editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
editor.ui.addButton('etranfile',
{
label: '附件',
command: pluginName,
icon: this.path + 'images/tranfile.gif',
toolbar: 'etranfile'
});
}
})
} )();