Slide 56
Slide 56 text
56
load: function () {!
!
Api.get('/profile/own', _.bind(function (ownProfile) {!
!
this.ownProfile = ownProfile;!
!
Api.get('/profile/' + id, _.bind(function (theirProfile) {!
!
this.theirProfile = theirProfile;!
!
Api.get('/chatMessages', _.bind(function (messages) {!
!
this.messages = messages;!
this.render();!
!
}, this), _.bind(function (err) {!
this.onError();!
}, this));!
}, this), _.bind(function (err) {!
this.onError();!
}, this));!
}, this), _.bind(function (err) {!
this.onError();!
}, this));!
}!
!