From: Andrew Dolgov Date: Fri, 30 Nov 2018 11:26:28 +0000 (+0300) Subject: unpackVisibleHeadlines: go ahead of the buffer position a bit (2) X-Git-Tag: 18.12~9 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=59f5335f56a85c428740a9cd6ded75ecc51d31fa unpackVisibleHeadlines: go ahead of the buffer position a bit (2) --- diff --git a/js/viewfeed.js b/js/viewfeed.js index e1d9cefd..886d13f0 100755 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -1008,7 +1008,7 @@ function unpackVisibleHeadlines() { if (!isCdmMode()) return; const rows = $$("#headlines-frame div[id*=RROW][data-content]"); - const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 100; + const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 300; for (let i = 0; i < rows.length; i++) { const row = rows[i];