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.