blob: a2d5db61bd2327ecef0f9c1b5c16106db45f12f4 [file] [log] [blame]
$(document).ready(function() {
// Smooth scrolling for internal links
$('a[href^="#"]').not('[data-toggle="dropdown"]').on('click', function(e) {
e.preventDefault();
var target = $(this.hash);
if (target.length === 0) {
target = $('a[name="' + this.hash.substr(1) + '"]');
}
if (target.length === 0) {
target = $('html');
}
$('html, body').animate({
scrollTop: target.offset().top
}, 500);
});
});