From 2c5927d8cdc6f16f8e8f86df201e625159e746ce Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 18 Feb 2021 15:38:26 +0300 Subject: rework previous to be less jumpy --- js/Headlines.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/js/Headlines.js b/js/Headlines.js index 16026f593..b10680cfe 100755 --- a/js/Headlines.js +++ b/js/Headlines.js @@ -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; } } } -- cgit v1.2.3