From 133b888764ae4ec926670bf3f58e232f86022732 Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 1 Jun 2022 07:58:55 -0700 Subject: [PATCH] Improving the feel of the swipe to refresh. --- ignite-template.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ignite-template.js b/ignite-template.js index b50bd29..ca6e447 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2412,9 +2412,9 @@ class list extends IgniteTemplate { 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) / 2; - if (diff < 100) { + if (diff < 75) { if (this.refreshPlaceholderElement instanceof IgniteTemplate) { this.refreshPlaceholderElement.element.style.setProperty("min-height", `${diff}px`); this.refreshPlaceholderElement.element.style.setProperty("height", `${diff}px`);