Stub frontend
[b4.git] / app / assets / javascripts / views / links / links_index.js.coffee
blob213dd6991eec23517f01a935b0939db24d7c9ef2
1 class B4.Views.LinksIndex extends Backbone.View
2   el: $ '#links'
3   tagName: 'ul'
5   render: ->
6     console.log(@template(links: @model.toJSON()))
7     $(@el).html @template(links: @model.toJSON())
9   template: JST['links/index']