Skip to content

Instantly share code, notes, and snippets.

@fletcherm
Created January 19, 2012 00:12
Show Gist options
  • Save fletcherm/1636684 to your computer and use it in GitHub Desktop.
Save fletcherm/1636684 to your computer and use it in GitHub Desktop.
class AcademicServicesRouter extends Backbone.Router
routes:
'records': 'records'
'financial_aid': 'financial_aid'
'admissions': 'admissions'
initialize: ({@view}) ->
records: => @view.show_records()
financial_aid: => @view.show_financial_aid()
admissions: => @view.show_admissions()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment