Skip to content

Instantly share code, notes, and snippets.

@enriquesaid
Created March 24, 2015 20:16
Show Gist options
  • Save enriquesaid/6201b9d1d2d74c673dd0 to your computer and use it in GitHub Desktop.
Save enriquesaid/6201b9d1d2d74c673dd0 to your computer and use it in GitHub Desktop.
Backbone.View: Render
var View = Backbone.View.extend({
render: function() {
this.$el.html("View exemplo");
return this;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment