summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/viewfeed.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 9c48fbcdb..1c5811fe7 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1281,7 +1281,8 @@ function headlines_scroll_handler(e) {
var child = rows[i];
if ($("headlines-frame").scrollTop < child.offsetTop &&
- child.offsetTop - $("headlines-frame").scrollTop < 100) {
+ child.offsetTop - $("headlines-frame").scrollTop < 100 &&
+ child.id.replace("RROW-", "") != _active_article_id) {
if (_active_article_id) {
var row = $("RROW-" + _active_article_id);