From 61f8628f9dbb9a9d3c0c917a7ca700f8eaa6bd5d Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 25 May 2022 08:20:48 -0700 Subject: [PATCH] Made it so that custom elements for the refresh placeholder and prepended to the parent. --- ignite-template.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index 9f52e83..b50bd29 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2180,6 +2180,9 @@ class list extends IgniteTemplate { this.refreshPlaceholderElement.construct(parent, this.element); this.refreshPlaceholderElement.element.style.setProperty("min-height", "0px"); this.refreshPlaceholderElement.element.style.setProperty("height", "0px"); + + //Force the placeholder element to be at the top of the parent. + parent.prepend(this.refreshPlaceholderElement.element); } parent.addEventListener("touchstart", this.refreshTouchStartListener);