summaryrefslogtreecommitdiffstats
path: root/website/extras.js
blob: e3497a2c1c1fa2a1bfe23f840182261cff3b60ba (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
25
26
27
28
29
30
/****************************************************************************
**
** Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
**
****************************************************************************/

var vOffset = 65;

$(function () {
    $('a[href*=#]:not([href=#])').on('click', function (e) {
        if (e.which == 2)
            return true;
        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);
        }
    });
});

$(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);
    }
});