From: Andrew Dolgov Date: Tue, 22 Mar 2016 07:23:57 +0000 (+0300) Subject: catchupfeedingroup: do not remove elements X-Git-Tag: 16.3~11 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=a51bc3dfa5631a7c0b9121fdfc47fcc35209ac6f catchupfeedingroup: do not remove elements --- diff --git a/js/feedlist.js b/js/feedlist.js index d74c1363..a7bf05d4 100644 --- a/js/feedlist.js +++ b/js/feedlist.js @@ -451,15 +451,9 @@ function catchupFeedInGroup(id) { if (rows.length > 0) { rows.each(function (row) { - new Effect.Fade(row, {duration : 0.5, afterFinish: function(obj) { - Element.remove(obj.element); - }}); + row.removeClassName("Unread"); }); - var feedTitle = $("FTITLE-" + id); - - if (feedTitle) new Effect.Fade(feedTitle, {duration : 0.5}); - updateFloatingTitle(true); }