aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-01-22 20:54:17 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-01-22 20:54:17 +0100
commit96fcb60c335a8985d0ebb8acec3af7c310edb70c (patch)
treecf1e1ccb801842cf4acc51c353bb481ede37d364 /src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js
parent124f8091cbb1e5cccd7972fa368f8e7c434e0e5b (diff)
parent30d81a47c689e1d7d963fcd3fd42af9958805e31 (diff)
downloadwallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.tar.gz
wallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.tar.zst
wallabag-96fcb60c335a8985d0ebb8acec3af7c310edb70c.zip
Merge pull request #1619 from wallabag/v2-themes-folder
Move public assets for themes
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js')
-rw-r--r--src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js b/src/Wallabag/CoreBundle/Resources/public/themes/_global/js/restoreScroll.js
new file mode 100644
index 00000000..331c9e19
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/public/themes/_global/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