Skip to content

Instantly share code, notes, and snippets.

@rpearce
Last active December 10, 2015 09:49
Show Gist options
  • Save rpearce/4416985 to your computer and use it in GitHub Desktop.
Save rpearce/4416985 to your computer and use it in GitHub Desktop.
fetchTrustCloudInfo: function() {
var self = this;
$.ajax({
method: 'get',
url: 'https://api.trustcloud.com/profile/getProfile?userid=email-' + this.model.get('email'),
dataType: 'json',
success: function(data) {
self.renderTrustCloudInfo(data);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment