1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 10:41:29 +00:00

dynamically show new label markers in headlines buffer w/o reload

This commit is contained in:
Andrew Dolgov
2009-01-18 16:07:31 +01:00
parent 1380f8eed4
commit f92471951b
4 changed files with 56 additions and 3 deletions

View File

@@ -5019,7 +5019,7 @@
$feed_id = $line["feed_id"];
$labels = get_article_labels($link, $id);
$labels_str = "";
$labels_str = "<span id=\"HLLCTR-$id\">";
foreach ($labels as $l) {
$labels_str .= "<span
@@ -5027,6 +5027,8 @@
$l[1]."</span>";
}
$labels_str .= "</span>";
if (count($topmost_article_ids) < 5) {
array_push($topmost_article_ids, $id);
}