Made it so that custom elements for the refresh placeholder and prepended to the parent.

This commit is contained in:
MattMo 2022-05-25 08:20:48 -07:00
parent 9a8705b715
commit 61f8628f9d

View File

@ -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);