我试图在CKEditor中添加我自己的工具栏按钮(在vBulletin中)。以下是我的代码:
CKEDITOR.plugins.add( 'app',
{
init: function( editor )
{
editor.addCommand( 'AppWidget',
{
modes : { source : 1, wysiwyg : 1 },
exec : function( editor )
{
alert("foo");
}
});
editor.ui.addButton( 'app',
{
label: 'App Widget',
command: 'AppWidget',
icon: this.path + 'app.png'
} );
}
} );
问题是:它将以WYSIWYG模式显示,但在源模式下将被禁用(灰显)。但我需要在源模式下启用此按钮。如果我写:
modes : { source : 1 },
它将在两种模式下禁用。
这里有任何提示吗?提前谢谢。
答案 0 :(得分:2)
问题解决了。我注意到编辑器模式应该是:
modes : { enhancedsource : 1 }