1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

Headlines.move: fix move to previous article if scrollTop returns a fractional value for current item

This commit is contained in:
Andrew Dolgov
2020-01-08 08:51:40 +03:00
parent b1c5ebdace
commit 7e2fd9bdce

View File

@@ -895,7 +895,7 @@ define(["dojo/_base/declare"], function (declare) {
if (!noscroll) {
Article.scroll(-ctr.offsetHeight / 2, event);
} else {
if (row && row.offsetTop < ctr.scrollTop) {
if (row && Math.round(row.offsetTop) < Math.round(ctr.scrollTop)) {
Article.cdmScrollToId(Article.getActive(), noscroll, event);
} else if (prev_id) {
Article.setActive(prev_id);