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.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/manager/templates/static/script.js b/src/manager/templates/static/script.js
new file mode 100644
index 000000000..7b2a5823c
--- /dev/null
+++ b/src/manager/templates/static/script.js
@@ -0,0 +1,8 @@
+
+$(function(){
+ $(".expand > div").hide();
+ $(".expand > h1").toggle(
+ function(){$(this).parent(".expand").find("div").slideDown('fast');},
+ function(){$(this).parent(".expand").find("div").slideUp('fast');}
+ );
+});