Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Last active August 29, 2015 14:11
Show Gist options
  • Save thenickcox/835962ed4e17c470b88a to your computer and use it in GitHub Desktop.
Save thenickcox/835962ed4e17c470b88a to your computer and use it in GitHub Desktop.
App.Views.AlbumItemView = Backbone.View.extend
setPlaceholder: ->
if $('#featured').children('li').length is 0 then $('.featured-albums').append('<p>No featured albums</p>')
events:
'click .unfeature': 'unfeature'
unfeature: ->
@model.save(featured: false)
@remove()
@setPlaceholder()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment