in src/main/resources/js/site.js [71:85]
$(this).find('li').each(function(itemid) {
// Set first tab as active
if (itemid == 0) {
$(this).addClass('active');
}
// Replace text with a link to tab contents
var name = $(this).html();
var link = $('<a>')
.attr('href', '#' + 'tab-' + groupid + '-' + itemid)
.attr('data-toggle', 'tab')
.html(name);
$(this).html(link);
});