(function() {
//Section 1 : 按下自定义按钮时执行的代码
var a={
exec: function(editor) {
var data=””;
var mySelection=editor.getSelection();
if (CKEDITOR.env.ie) {
mySelection.unlock(true);
data=mySelection.getNative().createRange().text;
} else {
data=mySelection.getNative();
}
if(data!=null&&data!=”){
}
}
},
b=’addmap’;
CKEDITOR.plugins.add(b, {
init: function(editor) {
editor.addCommand(b, a);
editor.ui.addButton(‘addmap’, {
label: ‘add map link’,
icon: this.path + ‘map.gif’,
command: b
});
}
});
})();
© 版权声明
文章版权归作者所有,未经允许请勿转载。