// Tabs - TabContainer.html
var tab = $( ".tab-content .tab-pane:first-child" );
if ( tab.length ) {
if ( window.location.hash ) {
var tabHashArr = window.location.hash.split('c');
$('.nav[role="tablist"] a[href="#tab-content-'+tabHashArr[1]+'"]').tab('show');
var tabOffsetSize = 30;
if ( fixedNavbar ) {
tabOffsetSize = navbarHeight+30;
}
var tabAnchor = '#tab-'+tabHashArr[1];
if ($(tabAnchor).length) {
$("html, body").stop().animate({
scrollTop: $(tabAnchor).offset().top-tabOffsetSize
}, 1500, "easeInOutExpo");
}
} else {
tab.addClass( "show active" );
}
}
f:format.raw()}')}>