]> git.immae.eu Git - github/wallabag/wallabag.git/blob - themes/baggy/js/init.js
4a843548c92e9256de2e24a466c353c278311b75
[github/wallabag/wallabag.git] / themes / baggy / js / init.js
1 $(document).ready(function() {
2
3 $("#menu").click(function(){
4 $("#links").toggle();
5 });
6
7
8 $("#listmode").click(function(){
9 if ( $.cookie("listmode") == 1 ) {
10 $(".entrie").css("width", "");
11 $(".entrie").css("margin-left", "");
12
13 $.removeCookie("listmode");
14 $("#listmode").removeClass("tablemode");
15 $("#listmode").addClass("listmode");
16 }
17 else {
18 $.cookie("listmode", 1, {expires: 365});
19
20 $(".entrie").css("width", "100%");
21 $(".entrie").css("margin-left", "0");
22 $("#listmode").removeClass("listmode");
23 $("#listmode").addClass("tablemode");
24 }
25
26 });
27
28 if ( $.cookie("listmode") == 1 ) {
29 $(".entrie").css("width", "100%");
30 $(".entrie").css("margin-left", "0");
31 $("#listmode").removeClass("listmode");
32 $("#listmode").addClass("tablemode");
33 }
34
35
36 });