aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/js/restoreScroll.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-11-24 13:11:57 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-11-24 13:11:57 +0100
commit85c5a1ff8d919d3d36a8125c9bbd0d9220025729 (patch)
tree28a95f126132dbe6c53e1e48f5c2099d29d5649b /themes/courgette/js/restoreScroll.js
parent7b8bb75228fff2a629388313a3d12cd63c846ad6 (diff)
downloadwallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.tar.gz
wallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.tar.zst
wallabag-85c5a1ff8d919d3d36a8125c9bbd0d9220025729.zip
failover if theme folder doesn't exist
Diffstat (limited to 'themes/courgette/js/restoreScroll.js')
-rwxr-xr-xthemes/courgette/js/restoreScroll.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/themes/courgette/js/restoreScroll.js b/themes/courgette/js/restoreScroll.js
deleted file mode 100755
index 331c9e19..00000000
--- a/themes/courgette/js/restoreScroll.js
+++ /dev/null
@@ -1,25 +0,0 @@
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