rework previous to be less jumpy

master
Andrew Dolgov 3 years ago
parent 2e4b403787
commit 2c5927d8cd

@ -931,10 +931,12 @@ const Headlines = {
const row = $("RROW-" + current_id);
if (row) {
const sibling = row.nextSibling;
const next = row.nextSibling;
if (sibling && Element.visible(sibling) && sibling.id == "headlines-spacer") {
App.Scrollable.scrollTo(sibling, $("headlines-frame"));
// hsp has half-screen height in auto catchup mode therefore we use its first child (normally A element)
if (next && Element.visible(next) && next.id == "headlines-spacer" && next.firstChild) {
$("headlines-frame").scrollTop = $("headlines-spacer").offsetTop -
$("headlines-frame").offsetHeight + next.firstChild.offsetHeight;
}
}
}

Loading…
Cancel
Save