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:
parent
c8c8ba67c5
commit
ee1b5c5ca9
@ -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");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user