Fork-Awesome/assets/js/site.js
2014-06-23 16:14:51 -05:00

15 lines
438 B
JavaScript

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