I've found the solution to my issue. When adding support for mobile to my touchmove
event listener I was still calling event.pageX
when I needed to be calling event.touches.item(0).screenX
. There's no actual 'delay', it just wasn't working.
↧
Tracking touches
↧