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) {