Font-Awesome/build/assets/js/index/index.js

29 lines
724 B
JavaScript
Raw Normal View History

$(function() {
// start the icon carousel
$('#iconCarousel').carousel({
interval: 5000
});
// make code pretty
2013-05-03 11:16:41 +08:00
$('pre').addClass('prettyprint');
window.prettyPrint && prettyPrint();
2013-05-05 09:41:26 +08:00
// // 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);
// }
// });
});