Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Fix for ion-refresher inverted scroll issue on Android #203

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/angular/controller/refresherController.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ IonicModule
setScrollLock(false);
}

if (isDragging) {
if (isDragging && isOverscrolling) {
nativescroll(scrollParent, deltaY - dragOffset * -1);
}

Expand Down
2 changes: 1 addition & 1 deletion release/js/ionic-angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -7091,7 +7091,7 @@ IonicModule
setScrollLock(false);
}

if (isDragging) {
if (isDragging && isOverscrolling) {
nativescroll(scrollParent, deltaY - dragOffset * -1);
}

Expand Down
2 changes: 1 addition & 1 deletion release/js/ionic.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -60274,7 +60274,7 @@ IonicModule
setScrollLock(false);
}

if (isDragging) {
if (isDragging && isOverscrolling) {
nativescroll(scrollParent, deltaY - dragOffset * -1);
}

Expand Down