From: Andrew Dolgov Date: Fri, 30 Nov 2018 17:00:27 +0000 (+0300) Subject: cdmScrollToArticle: set article read on selection X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=08bee97858f374352357fbfd4969bf7ebf4c2f85 cdmScrollToArticle: set article read on selection --- diff --git a/js/viewfeed.js b/js/viewfeed.js index efb906cb..373aa7dd 100755 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -491,7 +491,6 @@ function moveToPost(mode, noscroll, noexpand) { } else if (next_id) { cdmScrollToArticleId(next_id, true); - toggleUnread(next_id, 0); } } else if (next_id) { @@ -516,7 +515,6 @@ function moveToPost(mode, noscroll, noexpand) { scrollArticle(-ctr.offsetHeight/4); } else if (prev_id) { cdmScrollToArticleId(prev_id, noscroll); - toggleUnread(next_id, 0);1 } } else if (prev_id) { @@ -984,6 +982,9 @@ function cdmScrollToArticleId(id, force) { // expanded cdm has a 4px margin now ctr.scrollTop = parseInt(e.offsetTop) - 4; + + // article is selected manually, set it read + toggleUnread(id, 0);1 } }