From 28e85092c9d48f7b329d65b499b87cd1b7d299f0 Mon Sep 17 00:00:00 2001 From: MattMo Date: Mon, 15 Jan 2024 08:41:02 -0800 Subject: [PATCH] Removed the code that tries to reset the scroll position of the route. --- ignite-html-router.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ignite-html-router.js b/ignite-html-router.js index 1bb653b..ae6eea9 100644 --- a/ignite-html-router.js +++ b/ignite-html-router.js @@ -46,9 +46,6 @@ 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); - //If the route is already visible, call hidden, because we are reshowing the route. if (hideCallback && this.element.style.display != "none") { hideCallback(); @@ -345,7 +342,7 @@ class Router { //Push the route to our internal states Router.states.push(route); - //Create a new pushstate event and fire it. + //Fire a pushstate event to make the routes switch. var event = new Event("pushstate"); event.data = data; window.dispatchEvent(event); @@ -359,8 +356,11 @@ class Router { */ static back(fallback = null, refresh = false) { if (Router.states && Router.states.length > 1) { - Router.states.pop(); //Pop the current state. - Router.navigate(Router.states.pop(), null, refresh); //Navigate to the previous state. + //Pop the current state. + Router.states.pop(); + + //Navigate to the previous state + Router.navigate(Router.states.pop(), null, refresh, false); } else { //Pop the current state, otherwise it can be used to go back but we don't want that. if (Router.states.length > 0) {