Fork-Awesome/assets/js/site.js

39 lines
1001 B
JavaScript
Raw Normal View History

2013-05-11 00:00:01 +08:00
$(function() {
// start the icon carousel
2013-10-23 23:12:39 +08:00
$('#icon-carousel').carousel({
2013-05-11 00:00:01 +08:00
interval: 5000
});
2013-06-13 02:43:02 +08:00
2013-05-11 00:00:01 +08:00
// make code pretty
// $('pre').addClass('prettyprint');
// window.prettyPrint && prettyPrint();
// 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.
// $('section a[href="#"]').click(function(e) {
// e.preventDefault();
// e.stopPropagation();
// });
// // 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);
// }
// });
});