From 043042428ce7eea3daec258743349ff23c40b6e6 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 8 Oct 2013 16:11:20 -0700 Subject: add font_awesome --- library/font_awesome/src/assets/js/site.js | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 library/font_awesome/src/assets/js/site.js (limited to 'library/font_awesome/src/assets/js/site.js') diff --git a/library/font_awesome/src/assets/js/site.js b/library/font_awesome/src/assets/js/site.js new file mode 100644 index 000000000..16fa261a6 --- /dev/null +++ b/library/font_awesome/src/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
, 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); +// } +// }); +}); -- cgit v1.2.3