Open GoogleCodeExporter opened 8 years ago
actually adding the event.preventDefault() on touchmove quite fixed everything..
function handleTouchMove(event) {
if (event.touches.length > 1) {
cancelTouch();
} else {
touchDX = event.touches[0].pageX - touchStartX;
touchDY = event.touches[0].pageY - touchStartY;
+ event.preventDefault();
}
};
Original comment by natrixna...@gmail.com
on 3 Apr 2012 at 8:36
Attachments:
Hope this works as a patch
Original comment by natrixna...@gmail.com
on 3 Apr 2012 at 9:04
Attachments:
Original issue reported on code.google.com by
natrixna...@gmail.com
on 3 Apr 2012 at 8:25