Skip to content

Instantly share code, notes, and snippets.

@rodriguezartav
Created October 13, 2011 18:34
Show Gist options
  • Select an option

  • Save rodriguezartav/1285059 to your computer and use it in GitHub Desktop.

Select an option

Save rodriguezartav/1285059 to your computer and use it in GitHub Desktop.
Spine Main Controller
require("spine")
require("ajax")
require("tmpl")
Posts = require("controllers/posts")
class App extends Spine.Controller
elements:
"#posts" : "postsEl"
constructor: ->
super
@el.html require('views/layout')
@refreshElements()
@posts = new Posts( el: @postsEl)
module.exports = App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment