mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
28 lines
654 B
JavaScript
28 lines
654 B
JavaScript
|
$(function() {
|
||
|
// start the icon carousel
|
||
|
$('#iconCarousel').carousel({
|
||
|
interval: 5000
|
||
|
});
|
||
|
|
||
|
// make code pretty
|
||
|
window.prettyPrint && prettyPrint();
|
||
|
|
||
|
// inject twitter & github counts
|
||
|
$.ajax({
|
||
|
url: 'http://api.twitter.com/1/users/show.json',
|
||
|
data: {screen_name: 'fortaweso_me'},
|
||
|
dataType: 'jsonp',
|
||
|
success: function(data) {
|
||
|
$('#followers').html(data.followers_count);
|
||
|
}
|
||
|
});
|
||
|
$.ajax({
|
||
|
url: 'https://api.github.com/repos/fortawesome/Font-Awesome',
|
||
|
dataType: 'jsonp',
|
||
|
success: function(data) {
|
||
|
$('#watchers').html(data.data.watchers);
|
||
|
$('#forks').html(data.data.forks);
|
||
|
}
|
||
|
});
|
||
|
});
|