2013-05-03 00:12:33 +00:00
|
|
|
$(function() {
|
|
|
|
// start the icon carousel
|
|
|
|
$('#iconCarousel').carousel({
|
|
|
|
interval: 5000
|
|
|
|
});
|
|
|
|
|
|
|
|
// make code pretty
|
2013-05-03 03:16:41 +00:00
|
|
|
$('pre').addClass('prettyprint');
|
2013-05-03 00:12:33 +00:00
|
|
|
window.prettyPrint && prettyPrint();
|
|
|
|
|
2013-05-09 04:04:35 +00:00
|
|
|
// Disable links with href="#" inside <section>, so users can click on them
|
|
|
|
// to preview :active state without being scrolled up to the top of the page.
|
2013-05-09 18:04:40 +00:00
|
|
|
// $('section a[href="#"]').click(function(e) {
|
|
|
|
// e.preventDefault();
|
|
|
|
// e.stopPropagation();
|
|
|
|
// });
|
2013-05-05 01:41:26 +00: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);
|
|
|
|
// }
|
|
|
|
// });
|
2013-05-03 00:12:33 +00:00
|
|
|
});
|