Last active
August 29, 2015 14:11
-
-
Save thenickcox/d320e0b87fd157ad7689 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.Views.AlbumsItemView = Backbone.View.extend | |
el: '#featured' | |
render: -> | |
for model in @collection.models | |
itemView = new App.ItemView(model: model) | |
@$el.append itemView.render().el |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment