1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

(experimental) disable infscroll requests while marking auto catched up articles as read

This commit is contained in:
Andrew Dolgov
2015-07-14 12:50:27 +03:00
parent 0d0cb8fe1e
commit e7a66d1230
2 changed files with 9 additions and 1 deletions
+4
View File
@@ -1384,6 +1384,8 @@ function catchupBatchedArticles() {
reply = JSON.parse(transport.responseText);
var batch = reply.ids;
_infscroll_tmp_disable = 1;
batch.each(function(id) {
console.log(id);
var elem = $("RROW-" + id);
@@ -1391,6 +1393,8 @@ function catchupBatchedArticles() {
catchup_id_batch.remove(id);
});
_infscroll_tmp_disable = 0;
updateFloatingTitle(true);
} });