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

link|improve this question

49% accept rate
feedback

2 Answers

I solved this problem by extending Backbone.Router class and storing all my routes while navigate:

class MyRouter extends Backbone.Router
    constructor: (options) ->
        @on "all", @storeRoute
        @history = []
        super options

    storeRoute: ->
        @history.push Backbone.history.fragment

    previous: ->
        if @history.length > 1
            @navigate @history[@history.length-2], true 

Then, when you have to dismiss your modal, simply call the MyRouter.previous() method that it will redirect you back to the last "hash".

link|improve this answer
actually you could simply only store the last "hash" also instead of the hole history – mateusmaso Apr 28 at 5:39
feedback

You can trigger a route in the onCloseEvent of your popup or overlay with:

router.navigate('/lasturl/');

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.

http://documentcloud.github.com/backbone/#Router-navigate

link|improve this answer
2  
Of course, but again the question is, how do I know which the last url is? Does Backbone provide a useful method, or I will have to fetch it from window.history? – user802232 Dec 8 '11 at 10:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.