Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix double tap zoom on iOS 13 (#9757)
fix #9756 iOS 13 does not fire the second touchstart/end events in a double tap if the touchstart listener is non-passive. This fix makes it passive. Calling preventDefault() allows the second event to be fired but suppresses other events like `click`. `touchmove` needs to remain non-passive so that it can be used to prevent touches from scrolling or scaling the page on some versions of iOS Safari.
- Loading branch information