Using Backbone.js, is it possible to make the router navigate to the page where it came from? I'd like to use that for the case where I change my URL when a popup appears, and I want go change it back, when I hide the popup. I don't want to simply go back, because I want to keep the background page in precisely the same position as I left it before I showed the popup
|
feedback
|
|
I solved this problem by extending Backbone.Router class and storing all my routes while navigate:
Then, when you have to dismiss your modal, simply call the | |||
feedback
|
|
You can trigger a route in the onCloseEvent of your popup or overlay with:
This will set the url. If you pass true as the second param, you also will execute the routes action. Otherwise the page will be left unchanged. | |||||
feedback
|