We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b35ef59 + c5b01a1 commit cbabfedCopy full SHA for cbabfed
html/lib/diffHighlighter.js
@@ -13,9 +13,9 @@ var toggleDiff = function(id)
13
var collapsed = (content.style.display == 'none');
14
if (collapsed) {
15
content.style.display = 'box';
16
- jQuery(content).fadeTo('slow', 1).slideDown();
+ jQuery(content).slideDown(100);
17
} else {
18
- jQuery(content).fadeTo('fast', 0).slideUp('fast', function () {content.style.display = 'none'});
+ jQuery(content).slideUp(100, function () {content.style.display = 'none'});
19
}
20
21
var title = document.getElementById('title_' + id);
0 commit comments