Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Last active August 29, 2015 14:11
Show Gist options
  • Save thenickcox/cd68c56bf98fe10943db to your computer and use it in GitHub Desktop.
Save thenickcox/cd68c56bf98fe10943db to your computer and use it in GitHub Desktop.
App.Views.AlbumItemView = Backbone.View.extend
tagName: 'li'
template: _.template "<%= title %>"
initialize: ->
@model = new App.Models.Album (title: 'Giant Steps')
render: ->
@$el.html @template @model.attributes
this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment