aboutsummaryrefslogtreecommitdiffstats
path: root/src/manager/templates/static/script.js
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2007-11-13 11:58:28 +0000
committerMartin Willi <martin@strongswan.org>2007-11-13 11:58:28 +0000
commite8287a405e9a25fdcad29c754db2bce25a8ca5ea (patch)
tree7a5df3d75bf8aa846eb86d54dbbd0d8a483f570b /src/manager/templates/static/script.js
parent30a68d715b768751d15b9d72ed94c39a307bb1bd (diff)
downloadstrongswan-e8287a405e9a25fdcad29c754db2bce25a8ca5ea.tar.bz2
strongswan-e8287a405e9a25fdcad29c754db2bce25a8ca5ea.tar.xz
implemented IKE_SA initiation in manager
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 ba6f62215..c9105c372 100644
--- a/src/manager/templates/static/script.js
+++ b/src/manager/templates/static/script.js
@@ -1,8 +1,7 @@
$(function(){
- $(".expander").hide();
$(".expand > h1").toggle(
- function(){$(this).parent(".expand").find(".expander").slideDown('fast');},
- function(){$(this).parent(".expand").find(".expander").slideUp('fast');}
+ function(){$(this).parent(".expand").find(".expander").slideUp('fast');},
+ function(){$(this).parent(".expand").find(".expander").slideDown('fast');}
);
});