summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/templates/minion.html
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-01-18 01:50:03 -0500
committerLuke Macken <lmacken@redhat.com>2008-01-18 01:50:03 -0500
commit2f5e39c567aed2bf0e1f40d9cb016ef014cdc876 (patch)
tree3a32f3ce3104616458262dbe029600e1f3615254 /funcweb/funcweb/templates/minion.html
parent5c3da54171eb0520eb9da01bc11da96db4332080 (diff)
downloadfunc-2f5e39c567aed2bf0e1f40d9cb016ef014cdc876.tar.gz
func-2f5e39c567aed2bf0e1f40d9cb016ef014cdc876.tar.xz
func-2f5e39c567aed2bf0e1f40d9cb016ef014cdc876.zip
hide() before calling empty(), as to not kill our animations (if we actually care)
Diffstat (limited to 'funcweb/funcweb/templates/minion.html')
-rw-r--r--funcweb/funcweb/templates/minion.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcweb/funcweb/templates/minion.html b/funcweb/funcweb/templates/minion.html
index 37c6d47..b1961bd 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="$('#col4').empty();$('#col3').empty().load('/minion/${minion}/${module}').show('slow');">${module}</a>
+ <a href="#" onclick="$('#col4').hide().empty();$('#col3').hide().empty().load('/minion/${minion}/${module}').show('slow');">${module}</a>
</li>
</ul>
</div>