Skip to content

Instantly share code, notes, and snippets.

@qcom
Created August 30, 2013 22:22
Show Gist options
  • Save qcom/6394880 to your computer and use it in GitHub Desktop.
Save qcom/6394880 to your computer and use it in GitHub Desktop.
a backbone.js view
window.AttributeSearchResultView = Backbone.View.extend({
tagName: 'li',
events: {
'click': 'addAttribute'
},
addAttribtue: function() {
console.log('added');
},
initialize: function() {
this.template = _.template($('#attributeSearchResult-template').html());
},
render: function() {
this.$el.html(this.template(this.model.toJSON()));
return this;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment