diff --git a/ignite-html-router.js b/ignite-html-router.js index 5b9d473..1bb653b 100644 --- a/ignite-html-router.js +++ b/ignite-html-router.js @@ -49,6 +49,11 @@ IgniteTemplate.prototype.route = function (routes, showCallback = null, hideCall //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(); + } + //Show the route element. this.element.style.removeProperty("display");