熊猫办公系统
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
632 B

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