summaryrefslogtreecommitdiff
path: root/src/manager/templates/static/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager/templates/static/script.js')
-rw-r--r--src/manager/templates/static/script.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/manager/templates/static/script.js b/src/manager/templates/static/script.js
index 7b2a5823c..c9105c372 100644
--- a/src/manager/templates/static/script.js
+++ b/src/manager/templates/static/script.js
@@ -1,8 +1,7 @@
$(function(){
- $(".expand > div").hide();
$(".expand > h1").toggle(
- function(){$(this).parent(".expand").find("div").slideDown('fast');},
- function(){$(this).parent(".expand").find("div").slideUp('fast');}
+ function(){$(this).parent(".expand").find(".expander").slideUp('fast');},
+ function(){$(this).parent(".expand").find(".expander").slideDown('fast');}
);
});