You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromEvent<MouseEvent>(element,'mousemove',activeCapturingEventOptionsasAddEventListenerOptions)// TODO: Fix rxjs typings, boolean should be a good param too.
34
-
);
30
+
if(!ktdSupportsPointerEvents()){
31
+
returniif(
32
+
()=>ktdIsMobileOrTablet(),
33
+
this.touchMove$,
34
+
fromEvent<MouseEvent>(element,'mousemove',activeCapturingEventOptionsasAddEventListenerOptions)// TODO: Fix rxjs typings, boolean should be a good param too.
* Emits when a 'pointerdown' event occurs (only for the primary pointer). Fallbacks to 'mousemove' or a 'touchmove' if pointer events are not supported.
124
+
* @param element, html element where to listen the events.
* Emits when a 'pointermove' event occurs (only for the primary pointer). Fallbacks to 'mousemove' or a 'touchmove' if pointer events are not supported.
138
+
* @param element, html element where to listen the events.
0 commit comments