Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Last active August 29, 2015 14:11
Show Gist options
  • Save thenickcox/9914b98d681a71d5a57a to your computer and use it in GitHub Desktop.
Save thenickcox/9914b98d681a71d5a57a to your computer and use it in GitHub Desktop.
App.Views.AlbumsListView = Backbone.View.extend
initialize: ->
@listenTo @collection, 'sync', @render
@on 'handlePlaceholder', @setPlaceholder, @
@setPlaceholder()
setPlaceholder: ->
if @$el.children('li').length is 0
$('.featured-albums').append('<p>No featured albums</p>')
else
$('.featured-albums').find('p').remove()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment