如何删除“锚点链接”从“链接” CKeditor 中的编辑器
基本上,我删除了锚点按钮,因此链接窗口中不应该有指向锚点选项的链接。
有什么方法可以删除该下拉选项
?
Basically I removed the anchor button so there should not be a link to anchor option in my link window.
Any way to remove that dropdown option
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
想通了
Figured it out
dialogDefinition 允许您完全重新设计对话框。
我根据 http://nightly.ckeditor.com/ 中的示例这样做了7156/_samples/api_dialog.html
dialogDefinition allows you to completely redesign dialog boxes.
I did it this way, based on the example at http://nightly.ckeditor.com/7156/_samples/api_dialog.html
这是我的解决方案:
});
如果您使用
infoTab.remove('linkType');
删除链接类型,它将无法创建链接This's my solution:
});
If you get rid of Link Type using
infoTab.remove('linkType');
it will fails to create the link