We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c5ef27 commit 71e8971Copy full SHA for 71e8971
js/angular/controller/refresherController.js
@@ -78,6 +78,12 @@ IonicModule
78
startY = parseInt(e.touches[0].screenY, 10);
79
}
80
81
+ // kitkat fix for touchcancel events http://updates.html5rocks.com/2014/05/A-More-Compatible-Smoother-Touch
82
+ if (ionic.Platform.isAndroid() && ionic.Platform.version() === 4.4 && scrollParent.scrollTop === 0) {
83
+ isDragging = true;
84
+ e.preventDefault();
85
+ }
86
+
87
// how far have we dragged so far?
88
deltaY = parseInt(e.touches[0].screenY, 10) - startY;
89
0 commit comments