Marc Schmitt
Results
1
comments of
Marc Schmitt
Same problem here! Chrome seems to register on touch events, caused by this code: ``` if ('ontouchstart' in document.documentElement) { this.touchElement.addEventListener('touchstart', this.onRotationStart); this.touchElement.addEventListener('touchmove', this.onRotated); this.touchElement.addEventListener('touchend', this.onRotationStop); this.touchElement.addEventListener('touchcancel', this.onRotationStop); this.touchElement.addEventListener('dragstart', this.returnFalse);...