Skip to content

Instantly share code, notes, and snippets.

@rpearce
Last active December 10, 2015 09:49
Show Gist options
  • Save rpearce/4417199 to your computer and use it in GitHub Desktop.
Save rpearce/4417199 to your computer and use it in GitHub Desktop.
renderTrustCloudNetworks: function(user) {
_.each(user.networks, function(item) {
var iconHtml = '<li><a target="_new" href="'+item.url+'"><img src="'+item.icon+'" /></a></li>';
$('.badges').append(iconHtml);
});
},
renderTrustCardAbsent: function() {
$('.badges').append('<li>No TrustCard Found!</li>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment