Fixed a bug where the list refresh was being activated when the scroll top wasn't 0.
This commit is contained in:
parent
b805dc4bca
commit
9a8705b715
@ -2405,6 +2405,10 @@ class list extends IgniteTemplate {
|
|||||||
|
|
||||||
onRefreshTouchMove(event) {
|
onRefreshTouchMove(event) {
|
||||||
var touch = event.touches[0];
|
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);
|
var diff = Math.max(touch.clientY - this.refreshTouchStartY, 0);
|
||||||
|
|
||||||
if (diff < 100) {
|
if (diff < 100) {
|
||||||
@ -2429,6 +2433,7 @@ class list extends IgniteTemplate {
|
|||||||
this.refreshCallback();
|
this.refreshCallback();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
onRefreshTouchEnd(event) {
|
onRefreshTouchEnd(event) {
|
||||||
if (this.refreshPlaceholderElement instanceof IgniteTemplate) {
|
if (this.refreshPlaceholderElement instanceof IgniteTemplate) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user