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.

пре 3 година
123456789101112
  1. import { getPointerData } from './get-pointer-data';
  2. /**
  3. * Get pointer/finger position
  4. */
  5. export function getPosition(evt) {
  6. var data = getPointerData(evt);
  7. return {
  8. x: data.clientX,
  9. y: data.clientY,
  10. };
  11. }
  12. //# sourceMappingURL=get-position.js.map