diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:58:40 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:58:40 +0100 |
commit | 943ac3c77ec1dd93d14a780b25fa147d0f882760 (patch) | |
tree | 2c22e26e4066a97f0548d97531aabccbd3fe7abd /themes/baggy/js/init.js | |
parent | 83b47311ba0b8383da7955723a694b0fb3819062 (diff) | |
download | wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.tar.gz wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.tar.zst wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.zip |
new theme, baggy one cf #448
Diffstat (limited to 'themes/baggy/js/init.js')
-rwxr-xr-x | themes/baggy/js/init.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/baggy/js/init.js b/themes/baggy/js/init.js new file mode 100755 index 00000000..c1d3c0ec --- /dev/null +++ b/themes/baggy/js/init.js | |||
@@ -0,0 +1,12 @@ | |||
1 | document.addEventListener('DOMContentLoaded', function() { | ||
2 | var menu = document.getElementById('menu'); | ||
3 | |||
4 | menu.addEventListener('click', function(){ | ||
5 | if(this.nextElementSibling.style.display === "block") { | ||
6 | this.nextElementSibling.style.display = "none"; | ||
7 | }else { | ||
8 | this.nextElementSibling.style.display = "block"; | ||
9 | } | ||
10 | |||
11 | }); | ||
12 | }); \ No newline at end of file | ||