aboutsummaryrefslogtreecommitdiffstats
path: root/src/manager/templates/static/script.js
blob: 7b2a5823c909f8cbd1f7bbeea1197f1df8858992 (plain)
1
2
3
4
5
6
7
8

$(function(){
  $(".expand > div").hide();
  $(".expand > h1").toggle(
    function(){$(this).parent(".expand").find("div").slideDown('fast');},
    function(){$(this).parent(".expand").find("div").slideUp('fast');}
  );
});