0

如何在 TinyMCE 5 中的自定义按钮和自定义上下文工具栏上向元素添加样式(等 padding-left: 10px;)或 css 类?

这就是我到目前为止所做的:

    editor.ui.registry.addButton('addstyle', {
        icon: 'plus',
        tooltip: 'Align image left',
        onAction: 
    });


    editor.ui.registry.addContextToolbar('imagealignment', {
        predicate: function (node: any) {
            return node.nodeName.toLowerCase() === 'img'
        },
        items: 'addstyle',
        scope: 'node',
        position: 'node'
    });

我错过了在 onAction 上写什么?

4

1 回答 1

0

您需要为该特定插件编写插件源文件

于 2019-09-18T14:33:08.993 回答