aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/js/restoreScroll.js
blob: 331c9e1966f15277de78f475a2522858b39f767d (plain) (blame)
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
function supportsLocalStorage() {
    try {
        return 'localStorage' in window && window['localStorage'] !== null;
    } catch (e) {
        return false;
    }
}

function savePercent(id, percent) {
    if (!supportsLocalStorage()) { return false; }
    localStorage["poche.article." + id + ".percent"] = percent;
    return true;
}

function retrievePercent(id) {
    if (!supportsLocalStorage()) { return false; }

    var bheight = $(document).height();
    var percent = localStorage["poche.article." + id + ".percent"];
    var scroll = bheight * percent;

    $('html,body').animate({scrollTop: scroll}, 'fast');

    return true;
}