Open ystreibel opened 9 years ago
Hi,
In debug mode on Chrome, in track.js file, they are :
gestureProto.x = inEvent.x; gestureProto.y = inEvent.y;
but the inEvent hasn't got x and y properties.
I think to correct this is to change by
gestureProto.x = inEvent.clientX; gestureProto.y = inEvent.clientY;
Are you agree with that ?
Hi,
In debug mode on Chrome, in track.js file, they are :
but the inEvent hasn't got x and y properties.
I think to correct this is to change by
Are you agree with that ?