Skip to content

Commit

Permalink
Fix pointer dt on touchscreen devices
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanphp committed Jun 21, 2015
1 parent 32ddf54 commit 8c01ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interact.js
Original file line number Diff line number Diff line change
Expand Up @@ -2749,7 +2749,7 @@
},

firePointers: function (pointer, event, eventTarget, targets, elements, eventType) {
var pointerIndex = this.mouse? 0 : indexOf(getPointerId(pointer)),
var pointerIndex = this.mouse? 0 : indexOf(this.pointerIds, getPointerId(pointer)),
pointerEvent = {},
i,
// for tap events
Expand Down

0 comments on commit 8c01ff0

Please sign in to comment.