]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/_global/js/restoreScroll.js
manage assets through npm
[github/wallabag/wallabag.git] / app / Resources / static / themes / _global / js / restoreScroll.js
CommitLineData
19f2f11e
NL
1function supportsLocalStorage() {
2 try {
3 return 'localStorage' in window && window['localStorage'] !== null;
4 } catch (e) {
5 return false;
6 }
7}
8
9function savePercent(id, percent) {
10 if (!supportsLocalStorage()) { return false; }
5ecdfcd0 11 localStorage["wallabag.article." + id + ".percent"] = percent;
19f2f11e
NL
12 return true;
13}
14
15function retrievePercent(id) {
16 if (!supportsLocalStorage()) { return false; }
17
18 var bheight = $(document).height();
5ecdfcd0 19 var percent = localStorage["wallabag.article." + id + ".percent"];
19f2f11e
NL
20 var scroll = bheight * percent;
21
22 $('html,body').animate({scrollTop: scroll}, 'fast');
23
24 return true;
5ecdfcd0 25}