Skip to content

Instantly share code, notes, and snippets.

@marlun
Created May 23, 2011 20:37
Show Gist options
  • Select an option

  • Save marlun/987549 to your computer and use it in GitHub Desktop.

Select an option

Save marlun/987549 to your computer and use it in GitHub Desktop.
class Home extends Backbone.Controller
actorsView: null
routes:
"": "index"
constructor: ->
super
console.log "Created a new home controller"
@actorsView = app.views.ActorsView()
index: ->
console.log "Running the index route"
window.app.controllers.Home = Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment