You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to use PathJs to load html fragments and then have it execute code on load complete however the code seems to work by executing .enter() then .to().
If you want to use PathJS to load html fragments and execute code after it you can... by returning false on .enter() I was able to cancel the execution of .to(). So I called the $.load() in .enter() returning false then used
Path.routes.defined[path.path].action();
I believe I am using the framework in "reverse" to get what I want. I proposed rewriting the "run" function to be able to delay do_enter executions till after action has been taken
Question...how does "exit" work?
The text was updated successfully, but these errors were encountered:
I was trying to use PathJs to load html fragments and then have it execute code on load complete however the code seems to work by executing .enter() then .to().
If you want to use PathJS to load html fragments and execute code after it you can... by returning false on .enter() I was able to cancel the execution of .to(). So I called the $.load() in .enter() returning false then used
I believe I am using the framework in "reverse" to get what I want. I proposed rewriting the "run" function to be able to delay do_enter executions till after action has been taken
Question...how does "exit" work?
The text was updated successfully, but these errors were encountered: