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

20 lines
610 B

CKEDITOR.plugins.add('einsertbr',
{
init: function(editor)
{
//plugin code goes here
var pluginName = 'einsertbr';
//CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/flvPlayer.js');
editor.addCommand(pluginName,{exec:function(editor){
editor.insertHtml('<br/>');
}});
editor.ui.addButton('einsertbr',
{
label: '插入<br>',
command: pluginName,
icon: this.path + 'images/insertbr.gif'
});
}
});