summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/templates/minion.html2
-rw-r--r--funcweb/funcweb/templates/minions.html4
-rw-r--r--funcweb/funcweb/templates/module.html2
3 files changed, 4 insertions, 4 deletions
diff --git a/funcweb/funcweb/templates/minion.html b/funcweb/funcweb/templates/minion.html
index bb36d31..2223d57 100644
--- a/funcweb/funcweb/templates/minion.html
+++ b/funcweb/funcweb/templates/minion.html
@@ -7,7 +7,7 @@
<ul py:for="minion, mods in modules.items()">
<h2>${minion}</h2>
<li py:for="module in mods">
- <a href="#" onclick="$('#col3').load('/minion/${minion}/${module}')">${module}</a>
+ <a href="#" onclick="$('#col4').hide();$('#col3').hide().load('/minion/${minion}/${module}').show('slow');">${module}</a>
</li>
</ul>
</div>
diff --git a/funcweb/funcweb/templates/minions.html b/funcweb/funcweb/templates/minions.html
index 63e6396..f303a43 100644
--- a/funcweb/funcweb/templates/minions.html
+++ b/funcweb/funcweb/templates/minions.html
@@ -7,10 +7,10 @@
<body>
<div class="col-group">
<div class="col" id="col1">
- <b>Minions</b>
<ul>
+ <li><h2>minions</h2></li>
<li py:for="minion in minions.keys()">
- <a onclick="$('#col2').load('/minion/${minion}')" href="#">${minion}</a>
+ <a onclick="$('#col3').hide();$('#col4').hide();$('#col2').hide().load('/minion/${minion}').show('slow');" href="#">${minion}</a>
</li>
</ul>
</div>
diff --git a/funcweb/funcweb/templates/module.html b/funcweb/funcweb/templates/module.html
index ff49b98..2d433f6 100644
--- a/funcweb/funcweb/templates/module.html
+++ b/funcweb/funcweb/templates/module.html
@@ -7,7 +7,7 @@
<ul py:for="minion, methods in modules.items()">
<h2>${module}</h2>
<li py:for="method in methods">
- <a href="#" onclick="$('#col4').load('/minion/${minion}/${module}/${method}')">${method}</a>
+ <a href="#" onclick="$('#col4').hide().load('/minion/${minion}/${module}/${method}').show('slow')">${method}</a>
</li>
</ul>
</div>