js.msb3-skin.js Maven / Gradle / Ivy
Go to download
Msb3 is an Apache Maven site skin built on Twitter Bootstrap 3.3.
It allows various structural and stylistic customizations to create
a modern-looking Maven-generated website. Requires Msb3 Velocity Tools.
The newest version!
// Additional skin Javascript
// ++++++++++++++++++++++++++++++++++++++++++
!function ($) {
$(function(){
var $window = $(window)
// Start carousel
$(function() {
$('.carousel').carousel();
});
// activate syntax higlighting with highlight.js
// Note: only run if `hljs` exists
if (typeof hljs != 'undefined')
{
// classic encoding with
// and HTML5 version with
$('div.source pre, pre code').each(function(i, e) {hljs.highlightBlock(e)});
}
})
}(window.jQuery);