Skip to content

Commit

Permalink
Fix dx/ddx description.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed May 6, 2015
1 parent 14a2928 commit b90d586
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PRIMER.md
Original file line number Diff line number Diff line change
Expand Up @@ -776,10 +776,10 @@ The following are the gesture event types supported, with a short description an
* `end` - fired when tracking ends
* `x` - clientX coordinate for event
* `y` - clientY coordinate for event
* `dx` - change in pixels horizontally since last track event
* `dy` - change in pixels vertically since last track event
* `ddx` - change in pixels horizontally over last two track events
* `ddy` - change in pixels vertically over last two track events
* `dx` - change in pixels horizontally since the first track event
* `dy` - change in pixels vertically since the first track event
* `ddx` - change in pixels horizontally since last track event
* `ddy` - change in pixels vertically since last track event
* `hover()` - a function that may be called to determine the element currently being hovered

Example:
Expand Down

0 comments on commit b90d586

Please sign in to comment.