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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user