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
on ff android vertical pan is a little janky - address bar keeps moving up and down. Same in v1 - not a regression or anything
(reported by @1wheel)
The text was updated successfully, but these errors were encountered:
Maybe a case of touch-action: none or touchStart.preventDefault ; see https://observablehq.com/d/8c6133113d33b60c
Sorry, something went wrong.
tested on an Android phone this version seems good (fixing the issue both on Chrome and FF):
the difference is svg.on("touchstart", event => event.preventDefault())
svg.on("touchstart", event => event.preventDefault())
I'm not sure if it should be added by default in d3-brush or left to the user.
No branches or pull requests
(reported by @1wheel)
The text was updated successfully, but these errors were encountered: