зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
eec1b22242
Коммит
714457986a
|
@ -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>
|
||||
|
|
Загрузка…
Ссылка в новой задаче