Skip to content

Instantly share code, notes, and snippets.

@enriquesaid
Created March 24, 2015 20:23
Show Gist options
  • Save enriquesaid/81825fe2f8db21933e76 to your computer and use it in GitHub Desktop.
Save enriquesaid/81825fe2f8db21933e76 to your computer and use it in GitHub Desktop.
Events
var View = Backbone.View.extend({
events: {
"click .item": "clicked"
},
clicked: function() {
console.log("Item clicado");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment