Skip to content

Instantly share code, notes, and snippets.

@felipemesquita
Created August 27, 2012 15:04
Show Gist options
  • Save felipemesquita/3489317 to your computer and use it in GitHub Desktop.
Save felipemesquita/3489317 to your computer and use it in GitHub Desktop.
var ProjectView = Backbone.View.extend({
el: $('body'),
initialize: function(){ this.render(); },
render: function(){ $(this.el).html('My first view'); }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment