1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-24 11:56:36 +02:00

unpackVisibleHeadlines: go ahead of the buffer position a bit (2)

This commit is contained in:
Andrew Dolgov 2018-11-30 14:26:28 +03:00
parent 58dee80ae5
commit 59f5335f56

View File

@ -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];