summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-05-17 17:01:52 +0300
committerAndrew Dolgov <[email protected]>2020-05-17 17:01:52 +0300
commit25c84677534f9c97eca77498177aa5afb74142b2 (patch)
tree96f89f0e46fd9e7de716b03d3b0d8a91e2a2630e /js
parent05a84ab778ee0bc5af3ee626ef87a2074d06c51a (diff)
rename Headlines.correctHeadlinesOffset() to scrollToArticleId()
invoke it in Article.view() instead of all over the place
Diffstat (limited to 'js')
-rw-r--r--js/Article.js3
-rwxr-xr-xjs/Headlines.js4
2 files changed, 3 insertions, 4 deletions
diff --git a/js/Article.js b/js/Article.js
index 91b2b4b36..b0021f47b 100644
--- a/js/Article.js
+++ b/js/Article.js
@@ -139,7 +139,7 @@ define(["dojo/_base/declare"], function (declare) {
c.attr('content', article);
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
- Headlines.correctHeadlinesOffset(Article.getActive());
+ //Headlines.correctHeadlinesOffset(Article.getActive());
try {
c.focus();
@@ -198,6 +198,7 @@ define(["dojo/_base/declare"], function (declare) {
},
view: function (id, noexpand) {
this.setActive(id);
+ Headlines.scrollToArticleId(id);
if (!noexpand) {
const hl = Headlines.objectById(id);
diff --git a/js/Headlines.js b/js/Headlines.js
index be08f32eb..6b77472e3 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -835,7 +835,6 @@ define(["dojo/_base/declare"], function (declare) {
Article.setActive(next_id);
Article.cdmMoveToId(next_id, {event: event, noscroll: noscroll});
} else {
- Headlines.correctHeadlinesOffset(next_id);
Article.view(next_id, noexpand);
}
}
@@ -855,7 +854,6 @@ define(["dojo/_base/declare"], function (declare) {
}
} else if (prev_id) {
- Headlines.correctHeadlinesOffset(prev_id);
Article.view(prev_id, noexpand);
}
}
@@ -1193,7 +1191,7 @@ define(["dojo/_base/declare"], function (declare) {
eval(elem.value);
elem.attr('value', 'false');
},
- correctHeadlinesOffset: function (id) {
+ scrollToArticleId: function (id) {
const container = $("headlines-frame");
const row = $("RROW-" + id);