Added code to call hideCallback on a route if it was already visible but being renavigated to the hide callback is ran.

This commit is contained in:
MattMo 2023-10-31 23:26:13 -07:00
parent c8c8ba67c5
commit ee1b5c5ca9

View File

@ -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");