We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to disable any try of drag&drop in editor, but using disableDragAndDrop flag has effect on the entire document, which I dont' want to.
Is there any plans of improve this?
I think the problem is here:
/**
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to disable any try of drag&drop in editor, but using disableDragAndDrop flag has effect on the entire document, which I dont' want to.
Is there any plans of improve this?
I think the problem is here:
/**
*/
this.initialize = function () {
if (options.disableDragAndDrop) {
// prevent default drop event
documentEventHandlers.onDrop = function (e) {
e.preventDefault();
};
$document.on('drop', documentEventHandlers.onDrop);
} else {
this.attachDragAndDropEvent();
}
};
The text was updated successfully, but these errors were encountered: