1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:05:55 +00:00

Article.cdmScrollToId: disable smooth scrolling on repeated events

This commit is contained in:
Andrew Dolgov
2019-12-10 08:51:45 +03:00
parent dad3d1c7a9
commit 560346f9d1
2 changed files with 16 additions and 4 deletions

View File

@@ -868,7 +868,7 @@ define(["dojo/_base/declare"], function (declare) {
Article.scroll(ctr.offsetHeight / 2, event);
} else if (next_id) {
Article.setActive(next_id);
Article.cdmScrollToId(next_id, true);
Article.cdmScrollToId(next_id, true, event);
}
} else if (next_id) {
@@ -890,10 +890,10 @@ define(["dojo/_base/declare"], function (declare) {
Article.scroll(-ctr.offsetHeight / 2, event);
} else {
if (row.offsetTop < ctr.scrollTop) {
Article.cdmScrollToId(Article.getActive(), noscroll);
Article.cdmScrollToId(Article.getActive(), noscroll, event);
} else if (prev_id) {
Article.setActive(prev_id);
Article.cdmScrollToId(prev_id, noscroll);
Article.cdmScrollToId(prev_id, noscroll, event);
}
}