File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -257,17 +257,17 @@ IonicModule
257257 }
258258
259259
260- var touchStartEvent , touchMoveEvent , touchEndEvent ;
260+ var touchMoveEvent , touchEndEvent ;
261261 if ( window . navigator . pointerEnabled ) {
262- touchStartEvent = 'pointerdown' ;
262+ // touchStartEvent = 'pointerdown';
263263 touchMoveEvent = 'pointermove' ;
264264 touchEndEvent = 'pointerup' ;
265265 } else if ( window . navigator . msPointerEnabled ) {
266- touchStartEvent = 'MSPointerDown' ;
266+ // touchStartEvent = 'MSPointerDown';
267267 touchMoveEvent = 'MSPointerMove' ;
268268 touchEndEvent = 'MSPointerUp' ;
269269 } else {
270- touchStartEvent = 'touchstart' ;
270+ // touchStartEvent = 'touchstart';
271271 touchMoveEvent = 'touchmove' ;
272272 touchEndEvent = 'touchend' ;
273273 }
You can’t perform that action at this time.
0 commit comments