Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Last active August 29, 2015 14:11
Show Gist options
  • Save thenickcox/a33efa441dfaae694369 to your computer and use it in GitHub Desktop.
Save thenickcox/a33efa441dfaae694369 to your computer and use it in GitHub Desktop.
App.Views.AlbumItemView = Backbone.View.extend
tagName: 'li'
template: JST['templates/album_template']
initialize: (opts) ->
@listView = opts.listView
render: ->
@$el.html @template @model.attributes
this
events:
'click .unfeature': 'unfeature'
unfeature: ->
@model.save(featured: false)
@remove()
@listView.trigger 'handlePlaceholder'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment