site.js 597 B

12345678910111213141516
  1. $(function() {
  2. // start the icon carousel
  3. $('#icon-carousel').carousel({
  4. interval: 5000
  5. });
  6. var quotes = new Array(
  7. "Please support <strong>Black Tie</strong>, the new icon font from Font Awesome!",
  8. "Please help me make Font Awesome <strong>Black Tie</strong>!",
  9. "Get your company logo added to Font Awesome!",
  10. "Need a specific icon added to Font Awesome?",
  11. "If you like Font Awesome, you're going to love <strong>Black Tie</strong>!"
  12. ),
  13. random_quote = quotes[Math.floor( Math.random() * quotes.length )];
  14. $('.tagline').html(random_quote);
  15. });