Fixed a bug where the list refresh was being activated when the scroll top wasn't 0.

This commit is contained in:
MattMo 2022-05-24 08:01:28 -07:00
parent b805dc4bca
commit 9a8705b715

View File

@ -2405,6 +2405,10 @@ class list extends IgniteTemplate {
onRefreshTouchMove(event) {
var touch = event.touches[0];
if (this.element.parentElement.scrollTop > 0) {
this.refreshTouchStartY = touch.clientY;
} else {
var diff = Math.max(touch.clientY - this.refreshTouchStartY, 0);
if (diff < 100) {
@ -2429,6 +2433,7 @@ class list extends IgniteTemplate {
this.refreshCallback();
}
}
}
onRefreshTouchEnd(event) {
if (this.refreshPlaceholderElement instanceof IgniteTemplate) {