I can't seem to get the Backbone Router working in an expected manner. I i) instantiate my Router, then ii) call Backbone.history.start( { pushState: true, root: '/' } ). With the code below...
- 1) going to "/dashboard" or "/grid", the defined functions are not called
- 2) when I invoke myrouter.navigate("grid"), the defined functions are not called
- **) However, if I then go back or forwards throught the history, then the defined functions are called.
Router : Backbone.Router.extend
routes:
"dashboard": "dashboard"
"grid/:storyid": "grid"
dashboard: ->
console.log("...")
grid: (storyid) ->
console.log("...")
What do I need to do to get cases 1) and 2) to work?
Thanks
Backbone.history.start()– asawyer Nov 19 '12 at 18:00myrouter = new router.Router(), thenBackbone.history.start( { pushState: true, root: '/' } ). – Nutritioustim Nov 19 '12 at 18:02myrouter.navigate('grid', {trigger: true}). router doc – lowercase Nov 19 '12 at 20:17