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
Mouse wheel over the knob do not prevent page scroll.
onScroll in React is now a passive callback.
onScroll
As result preventDefault is inhibited.
preventDefault
Ignoring ‘preventDefault()’ call on event of type ‘wheel’ from a listener registered as ‘passive’.
This have to be changed to a non-passive one.
The text was updated successfully, but these errors were encountered:
Closed by fd61598
Sorry, something went wrong.
No branches or pull requests
Mouse wheel over the knob do not prevent page scroll.
onScroll
in React is now a passive callback.As result
preventDefault
is inhibited.This have to be changed to a non-passive one.
The text was updated successfully, but these errors were encountered: