TouchPolyfill
TouchPolyfill copied to clipboard
Use TouchEvents on Internet Explorer mobile
TouchPolyfill prevents scrolling in IE 11 Windows 8.1
Line 269: if (sourceEvent.type !== 'pointerdown') { oldTouch = touchesWrapper.getTouch(sourceEvent.pointerId); oldTarget = oldTouch.target; sourceEvent.target = oldTarget; } Should be: if (sourceEvent.type !== 'pointerdown') { oldTouch = touchesWrapper.getTouch(sourceEvent.pointerId); if (oldTouch !==...
Section 3 of the W3C touch specification clearly says that the touch coordinates should be integers, but floating point values are shown in demo.html