summaryrefslogtreecommitdiffstats
path: root/doc/global/template/scripts/extras.js
blob: cb1102d493669d9064be2247dfe8a2c5f5528490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
var vOffset = 65;

$(function () {
    $('a[href*=#]:not([href=#])').on('click', function () {
        var target = $(this.hash);
        target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
        if (target.length) {
            setTimeout(function () {
                $('html, body').animate({scrollTop: target.offset().top - vOffset}, 50);}, 50);
            // return false;
        }
    });
});

$(window).load(function () {
    var h = window.location.hash;
    var re = /[^a-z0-9_\#\-]/i
    if (h.length > 1 && !re.test(h)) {
        setTimeout(function () {
            $(window).scrollTop($(h).offset().top - vOffset);
        }, 0);
    }
});