Skip to content

Instantly share code, notes, and snippets.

@fearphage
Created September 14, 2011 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fearphage/1217548 to your computer and use it in GitHub Desktop.
Save fearphage/1217548 to your computer and use it in GitHub Desktop.
var UserProfile = Backbone.Model.extend({
url: '/user'
});
var UserProfileView = Backbone.View.extend({
initialize: function() {
_.bindAll(this, 'render');
}
,render: function() {
console.log(this.model, this.model.attributes, this.model.attributes.username, this.model.get('username'));
return this;
}
});
$(function() {
var
model = new UserProfile
,profile = new UserProfileViewi({
model: model
})
;
model.fetch({success: profile.render});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment