From ee1b5c5ca9bb676ad814265133281e55bc4e8d64 Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 31 Oct 2023 23:26:13 -0700 Subject: [PATCH] Added code to call hideCallback on a route if it was already visible but being renavigated to the hide callback is ran. --- ignite-html-router.js | 5 +++++ 1 file changed, 5 insertions(+) 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");