Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Created December 22, 2014 15:42
Show Gist options
  • Save thenickcox/512b0b0f6159ca9bc4aa to your computer and use it in GitHub Desktop.
Save thenickcox/512b0b0f6159ca9bc4aa to your computer and use it in GitHub Desktop.
App.AlbumItemView = Backbone.View.extend
tagName: 'li'
template: _.template "<a href='/users/<%= user_id %>/albums/<%= id %>'><%= title %></a><button class='unfeature'>Unfeature&nbsp;&times;</button>"
render: ->
@$el.html @template @model.attributes
this
events:
'click .unfeature': 'unfeature'
unfeature: ->
@model.save(featured: false)
@remove()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment