2015-02-17 13:06:46 -08:00
|
|
|
#trello
|
|
|
|
|
script.
|
|
|
|
|
(function() {
|
|
|
|
|
$.ajax({
|
2015-02-17 15:35:16 -08:00
|
|
|
url: '/api/trello',
|
2015-02-17 13:06:46 -08:00
|
|
|
type: 'GET'
|
|
|
|
|
}).done(
|
|
|
|
|
function(data) {
|
|
|
|
|
var trello = document.createElement('div');
|
2015-02-27 18:17:42 +09:00
|
|
|
$(trello).html('<h3> We help ' + data.trello + ' nonprofits. <a href="https://trello.com/b/BA3xVpz9/nonprofit-projects">(view them)</a></h3>').prependTo($('#trello'))
|
2015-02-17 13:06:46 -08:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
})();
|