我一直在使用editor.plugins.contextmenu.onContextMenu.add
自定义 TinyMCE 3.x 中的上下文菜单插件,但不能在 4.0 版中使用它
这是我收到的错误:
TypeError: a.plugins.contextmenu.onContextMenu is undefined
我的插件代码是:
tinymce.PluginManager.add("example", function(a,b) {
a.plugins.contextmenu.onContextMenu.add(function(th, menu, event) {
//my code for customizing contextmenu
})
a.addButton("exampleHelp", {
text : "help",
icon : !1,
onclick : function() {
//some code
}
})
});
它与init
我在 3.X 版本中使用的功能有关吗?