1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:45:55 +00:00

cute icon for updated posts

This commit is contained in:
Andrew Dolgov
2005-08-22 10:04:38 +01:00
parent 4fa3573e1a
commit b197f11776
6 changed files with 64 additions and 24 deletions

View File

@@ -121,12 +121,18 @@ function view(id,feed_id) {
var feedr = document.getElementById("FEEDR-" + feed_id);
feedr.className = feedr.className.replace("Unread", "");
}
total_unread--;
update_title();
update_title();
}
var upd_img_pic = document.getElementById("FUPDPIC-" + id);
if (upd_img_pic) {
upd_img_pic.innerHTML = "";
}
document.getElementById('content').innerHTML='Loading, please wait...';
xmlhttp.open("GET", "backend.php?op=view&id=" + param_escape(id), true);