问题: 将Firefox中的图像拖放到CKEditor窗口时,图像会在base64中自动编码。
现在我想禁用它。我尝试过:
config.removePlugins = 'dragdrop';
但它根本不起作用。还尝试使用旧插件(imagepaste),但不能正常工作......
那里有一个已知的解决方案吗? THX!
答案 0 :(得分:0)
在这里,我找到了禁用ckeditor拖放的解决方案
ed.on('instanceReady', (ev) =>{
CKEDITOR.plugins.clipboard.preventDefaultDropOnElement(ev.editor.document);
});