js.reflow-skin.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reflow-maven-skin Show documentation
Show all versions of reflow-maven-skin Show documentation
Reflow is an Apache Maven site skin built on Twitter Bootstrap.
It allows various structural and stylistic customizations to create
a modern-looking Maven-generated website. Requires Reflow 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)