(function()
{
var a =
{
exec:function(editor)
{
editor.insertHtml('Hai!');
}
};
CKEDITOR.plugins.add('addfromlist',
{
init:function(editor)
{
editor.addCommand('addfromlist', a);
editor.ui.addButton('addfromlist',
{
label:'Add some text from a list',
icon: this.path + 'addfromlist.png',
command: 'addfromlist'
});
}
});
})();
Mon, 03/28/2011 - 18:08
#1

Re: Writing a plugin to add text
viewtopic.php?f=11&t=15910
Re: Writing a plugin to add text