I need to create several buttons in one plugin, but this code
create only last button. Where I am wrong?
CKEDITOR.plugins.add('my_plugin',
{
init: function(editor)
{
editor.ui.addButton('button1',...);
editor.ui.addButton('button2',...);
...
}
...
});create only last button. Where I am wrong?
