Trello
Code:
SocialDig({
selector: '.trello',
service: 'trello',
user: 'kylebrumm'
}, function(data) {
if (data.length > 0) {
var list = document.createElement('ul');
list.className = 'list-plain boards';
// Loop through the boards
data.forEach(function(el, idx, arr) {
if (idx < 4) {
var item = document.createElement('li');
item.className = 'board';
item.innerHTML = '<a href="' + el.url + '" target="_blank">' + el.name + '</a><br><small>' + el.desc + '</small>';
// Add the new item to the list
list.appendChild(item);
}
});
// Add the list to the page
document.querySelector('.trello').appendChild(list);
}
});