Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When someone visits my page I want them to be rerouted to the login page and fire the action.

I can not get this code to work, hope someone can help me out.

window.AppRouter = Backbone.Router.extend({
    routes: {
        '': 'index',
        'login': 'login'
    },
    index: function(){
        Backbone.history.navigate('login');
    },
    login: function(){
        alert('route');
        userLoginView = new UserLoginView();
    }
});

$(function() {
    var appRouter = new AppRouter;
    Backbone.history.start({pushState: true});
});

I bet it has something to do with slashes maybe, something small.

share|improve this question

1 Answer

up vote 2 down vote accepted

You should use the navigate function of the router, not Backbone.history ( http://documentcloud.github.com/backbone/#Router-navigate ). You also have to specify the parameter trigger, so the corresponding action is triggered.

Here's the solution:

index: function() {
    this.navigate('login', {trigger: true});
}
share|improve this answer
Thank you, this did it. I tried using the trigger, but it didn't work. I think using 'this' in combination with it did the trick. Thanks! – Saif Bechan Mar 23 '12 at 10:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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