summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 10:04:38 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 10:04:38 +0100
commitb197f11776dd091565497c79e5119ab5b596e401 (patch)
tree643b230348470e8e6ccf064a1c8c988909f2069a /tt-rss.js
parent4fa3573e1a380827a15b56940b03c87af5787ca4 (diff)
cute icon for updated posts
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 285d667e2..24c5a88c6 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -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);