aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js
diff options
context:
space:
mode:
authorAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
committerAlexandr Danilov <bitbucket@modos189.ru>2015-08-04 17:18:15 +0300
commit53e121881b78bad3475aa92f2f33be231b441c2f (patch)
treea19caa2976c8de5b4c744fc3883e3af112881623 /src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js
parent7e63b892f9682e62f6758bb51c6912499f5bd8d1 (diff)
downloadwallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.gz
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.tar.zst
wallabag-53e121881b78bad3475aa92f2f33be231b441c2f.zip
Added Material theme
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js b/src/Wallabag/CoreBundle/Resources/views/themes/material/public/js/restoreScroll.js
new file mode 100644
index 00000000..331c9e19
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/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