summaryrefslogtreecommitdiff
path: root/static/f/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/f/script.js')
-rw-r--r--static/f/script.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/f/script.js b/static/f/script.js
index dcc901e0..6726d311 100644
--- a/static/f/script.js
+++ b/static/f/script.js
@@ -213,7 +213,8 @@ function jtSel(which, nolink) {
for(var i=0;i<l.length;i++)
if(l[i].id.substr(0,7) == 'jt_sel_') {
var name = l[i].id.substr(7);
- x('jt_box_'+name).style.display = name == which ? 'block' : 'none';
+ if(name != 'all')
+ x('jt_box_'+name).style.display = name == which || which == 'all' ? 'block' : 'none';
var o = x('jt_sel_'+name).parentNode;
if(o.className.indexOf('tabselected') >= 0) {
if(name != which)