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.

I have the following routes (hope nobody minds my using Coffeescript):

class MyRouter extends Backbone.Router
  routes:
    'games': 'games'
    'games/latest': 'latestGames'

  games: -> 
  latestGames: ->

I want to be able to respond to routing events outside of MyRouter like so:

App.myRouter.on('route:games', -> alert('games'))
App.myRouter.on('route:games/latest', -> alert('games/latest'))

When I go to #games, I get a 'games' alert. When I go to #games/latest, I do not get a 'games/latest' alert. When I navigate away from #games, I get a 'games' alert.

My questions are:

  1. Why don't I get a 'games/latest' alert when I navigate to #games/latest?
  2. Why do I get a 'games' alert when I navigate away from #games?

Thanks!

share|improve this question

1 Answer

I was applying on to the URL fragment, when I should be applying it to the action.

App.myRouter.on('route:games', -> alert('games'))
App.myRouter.on('route:latestGames', -> alert('games/latest'))
share|improve this answer

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.