diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-03 14:10:44 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-10-03 14:10:44 +0200 |
commit | 4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c (patch) | |
tree | 3c2f2885be96c7163444a7d366767a4ac2ca87f7 /themes/default/js | |
parent | 66e074b43dd4efc9f63c8fee784b99bcce51ab93 (diff) | |
download | wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.gz wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.tar.zst wallabag-4cc3c2ac1735196e4e6a18d1a1124cd0d9a0ed5c.zip |
embed themes
Diffstat (limited to 'themes/default/js')
-rw-r--r-- | themes/default/js/restoreScroll.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/themes/default/js/restoreScroll.js b/themes/default/js/restoreScroll.js new file mode 100644 index 00000000..331c9e19 --- /dev/null +++ b/themes/default/js/restoreScroll.js | |||
@@ -0,0 +1,25 @@ | |||
1 | function supportsLocalStorage() { | ||
2 | try { | ||
3 | return 'localStorage' in window && window['localStorage'] !== null; | ||
4 | } catch (e) { | ||
5 | return false; | ||
6 | } | ||
7 | } | ||
8 | |||
9 | function savePercent(id, percent) { | ||
10 | if (!supportsLocalStorage()) { return false; } | ||
11 | localStorage["poche.article." + id + ".percent"] = percent; | ||
12 | return true; | ||
13 | } | ||
14 | |||
15 | function 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 | ||