Documentation / API Reference

Addbar

add #

Arguments
name String
button Object

Adds a button to the addbar.


Redactor.add('plugin', 'myplugin', {
    start() {
        this.app.addbar.add('mybutton', {
            title: 'My Button',
            icon: '<svg...>',
            command: 'myplugin.toggle'
        });
    },
    toggle(params, button) {
        // do something
    }
});

Now call the editor with the plugin created:

Redactor('#entry', {
    plugins: ['myplugin']
});

The button should appear in the addbar popup when you click on any block and when press the plus icon to show the addbar. The button click will call the plugin's toggle method.

See more about the parameters of the buttons.