From c8c8ba67c54919bbeb50f6e25dc0885c879bb57a Mon Sep 17 00:00:00 2001 From: MattMo Date: Wed, 18 Oct 2023 17:44:03 -0700 Subject: [PATCH] Added code to reset the element on route change so that if there is a scroll bar it also gets reset. --- ignite-html-router.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ignite-html-router.js b/ignite-html-router.js index 5f02754..5b9d473 100644 --- a/ignite-html-router.js +++ b/ignite-html-router.js @@ -46,6 +46,9 @@ IgniteTemplate.prototype.route = function (routes, showCallback = null, hideCall //Invoke the callback if the route matched. if (routeMatches) { + //Replace the element so that the scroll position resets, if possible. + this.element.parentElement.parentElement.replaceChild(this.element.parentElement, this.element.parentElement); + //Show the route element. this.element.style.removeProperty("display");