aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/courgette/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
parent8905191413f20e7fba1d635a06cf5ec2ff86cbb3 (diff)
downloadwallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.gz
wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.tar.zst
wallabag-5ed8050791ef562ff4351ede3a077ab1e8b0d916.zip
[add] courgette theme
Diffstat (limited to 'themes/courgette/js')
-rwxr-xr-xthemes/courgette/js/init.js6
-rwxr-xr-xthemes/courgette/js/restoreScroll.js25
2 files changed, 31 insertions, 0 deletions
diff --git a/themes/courgette/js/init.js b/themes/courgette/js/init.js
new file mode 100755
index 00000000..dca83906
--- /dev/null
+++ b/themes/courgette/js/init.js
@@ -0,0 +1,6 @@
1$.fn.ready(function () {
2 $('#menu').on('click', function(){
3 $('body').toggleClass('menuOpen');
4 $('#menuContainer, #article_toolbar').toggleClass('open');
5 });
6}) \ No newline at end of file
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