blob: 796d3e57ddc5d5a44718c6863238fcf884927a82 [file] [log] [blame]
$(function() {
$( "a[class*='cw-current-page']" ).each ( function() {
$(this).parentsUntil( $( "ul" ), ".cw-sidebar-div" ).each( function () {
$(this).prev("a[data-toggle='collapse']" ).each( function () {
$(this).trigger("click");
})
});
});
$('a[href^="#"]').not('.list-group-item').on("click", function(e) {
e.preventDefault();
var id = $($(this).attr('href'));
if (id.length === 0) {
return;
}
var pos = id.offset().top - 131;
// animated top scrolling
$('body, html').animate({scrollTop: pos});
});
});