We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea47f3 commit 439c7a6Copy full SHA for 439c7a6
src/input/pointerevent.js
@@ -18,7 +18,7 @@ var POINTER_ELEMENT_EVENTS = 'pointerdown';
18
var POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel';
19
20
// IE10 has prefixed support, and case-sensitive
21
-if (window.MSPointerEvent) {
+if (window.MSPointerEvent && !window.PointerEvent) {
22
POINTER_ELEMENT_EVENTS = 'MSPointerDown';
23
POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel';
24
}
0 commit comments