summaryrefslogtreecommitdiffstats
path: root/src/dynsections.js
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-05-19 12:11:23 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-05-19 12:11:23 (GMT)
commit55e5055cfbb6f8e013a894c0ec8b10771231e3ba (patch)
tree58d7a64919b99cc76fdc7120ae5d0407f3163a67 /src/dynsections.js
parent44ca9512aaeb19f7fbd07afda88ec4cfe53ce831 (diff)
downloadDoxygen-55e5055cfbb6f8e013a894c0ec8b10771231e3ba.zip
Doxygen-55e5055cfbb6f8e013a894c0ec8b10771231e3ba.tar.gz
Doxygen-55e5055cfbb6f8e013a894c0ec8b10771231e3ba.tar.bz2
Release-1.8.1
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');
}
}