1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-02 12:50:52 +02:00

catchupfeedingroup: do not remove elements

This commit is contained in:
Andrew Dolgov 2016-03-22 10:23:57 +03:00
parent 6056d164fa
commit a51bc3dfa5

View File

@ -451,15 +451,9 @@ function catchupFeedInGroup(id) {
if (rows.length > 0) { if (rows.length > 0) {
rows.each(function (row) { rows.each(function (row) {
new Effect.Fade(row, {duration : 0.5, afterFinish: function(obj) { row.removeClassName("Unread");
Element.remove(obj.element);
}});
}); });
var feedTitle = $("FTITLE-" + id);
if (feedTitle) new Effect.Fade(feedTitle, {duration : 0.5});
updateFloatingTitle(true); updateFloatingTitle(true);
} }