Hey, I am trying to disable the drag n drop functionality in CKEditor, its working fine with all the browsers except IE 10.
Are there any issues with that??
For reference following is the code that I am using....
CKEDITOR.on('instanceReady', function (ev) {
ev.editor.document.on('drop', function (ev) {
ev.data.preventDefault(true);
});
});