in src/main/resources/js/site.js [50:59]
$('table').each(function() {
if ($(this).hasClass('bodyTable')) {
// Remove border="1" which is added by maven
this.border = 0;
// Add bootstrap table styling
$(this).addClass('table table-striped table-bordered');
}
});