Bug 364952 - "Clicking "Hide/Show Obsolete" link should not scroll show_bug page" [p=reed/Hannibal r=LpSolit a=justdave]

This commit is contained in:
reed%reedloden.com 2006-12-27 01:14:39 +00:00
Родитель eec1b22242
Коммит 714457986a
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -25,6 +25,7 @@
function toggle_display(link) {
var table = document.getElementById("attachment_table");
var rows = table.getElementsByTagName("tr");
var originalHeight = table.offsetHeight; // Store current height for scrolling
var toggle;
if (link.innerHTML == "Show Obsolete") {
@ -40,7 +41,11 @@
if (rows[i].className.match('bz_tr_obsolete'))
rows[i].style.display = toggle;
}
return true;
var newHeight = table.offsetHeight;
window.scrollBy(0, newHeight - originalHeight);
return false;
}
//-->
</script>