summaryrefslogtreecommitdiffstats
path: root/src/dynsections.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynsections.js')
-rw-r--r--src/dynsections.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynsections.js b/src/dynsections.js
index 3c5c379..116542f 100644
--- a/src/dynsections.js
+++ b/src/dynsections.js
@@ -68,10 +68,10 @@ function toggleInherit(id)
var img = $('tr.inherit_header.'+id+' img');
var src = $(img).attr('src');
if (rows.filter(':first').is(':visible')===true) {
- rows.hide();
+ rows.css('display','none');
$(img).attr('src',src.substring(0,src.length-8)+'closed.png');
} else {
- rows.show();
+ rows.css('display','table-row'); // using show() causes jump in firefox
$(img).attr('src',src.substring(0,src.length-10)+'open.png');
}
}