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

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

$(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.replace(/(\.)/g, "\\$1")).offset().top - vOffset);
        }, 0);
    }
});