aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-21 16:04:05 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-21 16:04:05 +0100
commit0440249631164a378981d014bf71b617c082bf5a (patch)
tree740d4e798c954374f115927ebc434d393368ab46 /src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js
parent3eb951572d3f22ad37395afceb4a739ad8cd0fd6 (diff)
downloadwallabag-0440249631164a378981d014bf71b617c082bf5a.tar.gz
wallabag-0440249631164a378981d014bf71b617c082bf5a.tar.zst
wallabag-0440249631164a378981d014bf71b617c082bf5a.zip
move templates into resources
Diffstat (limited to 'src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js')
-rw-r--r--src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js b/src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js
new file mode 100644
index 00000000..331c9e19
--- /dev/null
+++ b/src/Wallabag/Wallabag/Resources/views/_global/public/js/restoreScroll.js
@@ -0,0 +1,25 @@
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; }
11 localStorage["poche.article." + id + ".percent"] = percent;
12 return true;
13}
14
15function retrievePercent(id) {
16 if (!supportsLocalStorage()) { return false; }
17
18 var bheight = $(document).height();
19 var percent = localStorage["poche.article." + id + ".percent"];
20 var scroll = bheight * percent;
21
22 $('html,body').animate({scrollTop: scroll}, 'fast');
23
24 return true;
25} \ No newline at end of file