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
Bug: In this example: https://mdn.github.io/dom-examples/touchevents/Multi-touch_interaction.html, the border during swipe-action is causing the other items to move (repaint / reflow) on the page, that in it's turn will trigger a non -swipe-button to be triggered as a swipe due to it's moved.
Solution: Use some non repaint CSS like outline, or box-shadow instead of the dashed-border.
The text was updated successfully, but these errors were encountered:
I agree that this could be better. I've updated the border usage to outline. Do you think this fixes the bug?
border
outline
Sorry, something went wrong.
Yes it did :) Great!
No branches or pull requests
Bug:
In this example: https://mdn.github.io/dom-examples/touchevents/Multi-touch_interaction.html, the border during swipe-action is causing the other items to move (repaint / reflow) on the page, that in it's turn will trigger a non -swipe-button to be triggered as a swipe due to it's moved.
Solution:
Use some non repaint CSS like outline, or box-shadow instead of the dashed-border.
The text was updated successfully, but these errors were encountered: