Skip to content
New issue

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

Allow user prevention of tap and track gestures from down #1843

Merged
merged 3 commits into from
Jun 17, 2015

Commits on Jun 12, 2015

  1. Allow user prevention of tap and track gestures from down

    New API: `event.detail.prevent('tap')` and `event.detail.prevent('track')`
    Fixes #1823
    
    Forward `preventDefault` from gesture events to source events
    
    `gesture.preventDefault()` is equivalent to
    `gesture.detail.sourceEvent.preventDefault()`
    
    Remove `preventDefault()` on mousemove in track, user must use
    `track.preventDefault()` to hide user selection or use `user-select:none`
    Fixes #1824
    dfreedm committed Jun 12, 2015
    Configuration menu
    Copy the full SHA
    11869f2 View commit details
    Browse the repository at this point in the history
  2. IE keeps us from having nice things

    Fix `preventDefault` in IE ONCE AND FOR ALL
    dfreedm committed Jun 12, 2015
    Configuration menu
    Copy the full SHA
    1a3fb63 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74a0a6a View commit details
    Browse the repository at this point in the history