All pastes #2131279 Raw Edit

Unnamed

public javascript v1 · immutable
#2131279 ·published 2012-03-23 03:22 UTC
rendered paste body
App.PostsView = Backbone.View.extend({		id: 'posts',		render: function(){			this.collection.each(this.addOne(), this)		},		addOne: function(post){			console.log(post)		}	})