You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get-pointer-data.js 276 B

3 years ago
123456789
  1. /**
  2. * Get pointer/touch data
  3. */
  4. export function getPointerData(evt) {
  5. // if is touch event, return last item in touchList
  6. // else return original event
  7. return evt.touches ? evt.touches[evt.touches.length - 1] : evt;
  8. }
  9. //# sourceMappingURL=get-pointer-data.js.map