site.js 438 B

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