aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy/js/init.js
blob: 4a843548c92e9256de2e24a466c353c278311b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$(document).ready(function() {

  $("#menu").click(function(){
    $("#links").toggle();
  });


  $("#listmode").click(function(){
    if ( $.cookie("listmode") == 1 ) {
      $(".entrie").css("width", "");
      $(".entrie").css("margin-left", "");

      $.removeCookie("listmode");
      $("#listmode").removeClass("tablemode");
      $("#listmode").addClass("listmode");
    }
    else {
      $.cookie("listmode", 1, {expires: 365});

      $(".entrie").css("width", "100%");
      $(".entrie").css("margin-left", "0");
      $("#listmode").removeClass("listmode");
      $("#listmode").addClass("tablemode");
    }

  });

  if ( $.cookie("listmode") == 1 ) {
    $(".entrie").css("width", "100%");
    $(".entrie").css("margin-left", "0");
    $("#listmode").removeClass("listmode");
    $("#listmode").addClass("tablemode");
  }


});