diff options
author | Thomas Park <thomas@thomaspark.me> | 2013-11-12 15:34:23 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2013-11-12 15:34:23 -0500 |
commit | 016d9a2ae924c3999ff9aa279511e32c0bfbe7bb (patch) | |
tree | c04189b0eed7025a6764360cbe3613c900353fe6 /bower_components/font-awesome/src/3.2.1/assets/js/site.js | |
parent | 61dab0661ba43d3192fa8c2945f7343df44049ed (diff) |
update to fontawesome 4
Diffstat (limited to 'bower_components/font-awesome/src/3.2.1/assets/js/site.js')
-rw-r--r-- | bower_components/font-awesome/src/3.2.1/assets/js/site.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/bower_components/font-awesome/src/3.2.1/assets/js/site.js b/bower_components/font-awesome/src/3.2.1/assets/js/site.js new file mode 100644 index 00000000..16fa261a --- /dev/null +++ b/bower_components/font-awesome/src/3.2.1/assets/js/site.js @@ -0,0 +1,38 @@ +$(function() { + // start the icon carousel + $('#iconCarousel').carousel({ + interval: 5000 + }); + + + + + // 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); +// } +// }); +}); |