aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/js/restoreScroll.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-01-08 11:28:46 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2014-01-08 11:28:46 +0100
commit5ed8050791ef562ff4351ede3a077ab1e8b0d916 (patch)
tree8e0a6bb5cc584b0710fb01048dc08bc26189d71e /themes/courgette/js/restoreScroll.js
parent8905191413f20e7fba1d635a06cf5ec2ff86cbb3 (diff)
downloadwallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.gz
wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.zst
wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.zip
[add] courgette theme
Diffstat (limited to 'themes/courgette/js/restoreScroll.js')
-rwxr-xr-xthemes/courgette/js/restoreScroll.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/themes/courgette/js/restoreScroll.js b/themes/courgette/js/restoreScroll.js
new file mode 100755
index 00000000..331c9e19
--- /dev/null
+++ b/themes/courgette/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