unignore bower_components
[bootswatch] / bower_components / font-awesome / src / assets / js / site.js
1 $(function() {
2   // start the icon carousel
3   $('#iconCarousel').carousel({
4     interval: 5000
5   });
6
7
8
9
10   // make code pretty
11 //  $('pre').addClass('prettyprint');
12 //  window.prettyPrint && prettyPrint();
13
14   // Disable links with href="#" inside <section>, so users can click on them
15   // to preview :active state without being scrolled up to the top of the page.
16 //  $('section a[href="#"]').click(function(e) {
17 //    e.preventDefault();
18 //    e.stopPropagation();
19 //  });
20
21 //  // inject twitter & github counts
22 //  $.ajax({
23 //    url: 'http://api.twitter.com/1/users/show.json',
24 //    data: {screen_name: 'fortaweso_me'},
25 //    dataType: 'jsonp',
26 //    success: function(data) {
27 //      $('#followers').html(data.followers_count);
28 //    }
29 //  });
30 //  $.ajax({
31 //    url: 'https://api.github.com/repos/fortawesome/Font-Awesome',
32 //    dataType: 'jsonp',
33 //    success: function(data) {
34 //      $('#watchers').html(data.data.watchers);
35 //      $('#forks').html(data.data.forks);
36 //    }
37 //  });
38 });