Skip to content

Instantly share code, notes, and snippets.

@felipemesquita
Created August 29, 2012 01:45
Show Gist options
  • Save felipemesquita/3505960 to your computer and use it in GitHub Desktop.
Save felipemesquita/3505960 to your computer and use it in GitHub Desktop.
var ProjectView = Backbone.View.extend({
tagName: 'ul',
className: 'projects',
template: _.template('<li><%= title %></li>'),
render: function(){
$(this.el).append(this.template({ title: this.model.title }));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment