如何禁用WYSIWYG Editor v1.1.1上下文菜单 我试过这个但是没有用
CKEDITOR.editorConfig = function( config )
{
config.removePlugins = 'contextmenu';
//also try this below code
config.removePlugins = 'contextmenu,liststyle,tabletools';
};
有什么想法吗?
答案 0 :(得分:0)
使用模块覆盖设置
function MODULENAME_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['removePlugins'] = 'scayt,menubutton,contextmenu';
}
}
不要忘记将MODULENAME替换为您自己的模块名称。