Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created December 31, 2012 03:58
Show Gist options
  • Save rpearce/4417263 to your computer and use it in GitHub Desktop.
Save rpearce/4417263 to your computer and use it in GitHub Desktop.
var UserShow = Backbone.View.extend({
initialize: function() {
_.bindAll(this, 'render');
},
render: function() {
$('#name').html(this.model.get('fullName'))
this.fetchTrustCloudInfo();
},
// ...code we will write
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment