Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. App.AlbumItemView = Backbone.View.extend
  2. tagName: 'li'
  3. template: _.template "<a href='/users/<%= user_id %>/albums/<%= id %>'><%= title %></a><button class='unfeature'>Unfeature&nbsp;&times;</button>"
  4. render: ->
  5. @$el.html @template @model.attributes
  6. this
  7. events:
  8. 'click .unfeature': 'unfeature'
  9. unfeature: ->
  10. @model.save(featured: false)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement