summaryrefslogtreecommitdiff
path: root/js/Headlines.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-12-10 08:51:45 +0300
committerAndrew Dolgov <[email protected]>2019-12-10 08:51:45 +0300
commit560346f9d19f521db1adfbad2cab8c0c61e16cf7 (patch)
treec17965fa57458148e9c24aa7936a86d9213b6273 /js/Headlines.js
parentdad3d1c7a9555f484d5c4070d1ad86632372f3ec (diff)
Article.cdmScrollToId: disable smooth scrolling on repeated events
Diffstat (limited to 'js/Headlines.js')
-rwxr-xr-xjs/Headlines.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 796c182e5..99f911838 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -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);
}
}