1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 07:55:57 +00:00

parse_counters: highlight feeds with new articles

This commit is contained in:
Andrew Dolgov
2007-08-10 18:15:24 +01:00
parent 7a27bf8344
commit 8e9141ed1f

View File

@@ -687,6 +687,8 @@ function parse_counters(reply, scheduled_call) {
viewCurrentFeed();
}
var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
feedu.innerHTML = ctr;
if (error) {
@@ -710,6 +712,10 @@ function parse_counters(reply, scheduled_call) {
}
}
if (row_needs_hl) {
new Effect.Highlight(feedr, {duration: 0.3, startcolor: "#fff7d5"});
}
} else {
feedctr.className = "invisible";
feedr.className = feedr.className.replace("Unread", "");