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
The following code:
var shouldUpdate = _this.props.onDrag(e, coreEvent); if (shouldUpdate === false) { _this.handleDragStop(new MouseEvent()); return; }
is causing:
VM48820:1133 Uncaught TypeError: Failed to construct 'MouseEvent': 1 argument required, but only 0 present.
This is occurring when I return false during the onDrag call. I have only tested this in Chrome.
The text was updated successfully, but these errors were encountered:
41fe7c5
Add typeArg to MouseEvent constructor as per spec; fixes #164
typeArg
3e69b8b
Thanks for the notification. This is fixed in 2.1.2.
2.1.2
Sorry, something went wrong.
No branches or pull requests
The following code:
is causing:
This is occurring when I return false during the onDrag call. I have only tested this in Chrome.
The text was updated successfully, but these errors were encountered: