Skip to content

Commit c3641f2

Browse files
committed
A Circle for the CI gods
1 parent 1f43278 commit c3641f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

js/angular/controller/refresherController.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)