mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 20:15:55 +00:00
Headlines.move: fix move to previous article if scrollTop returns a fractional value for current item
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user