summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-02 16:34:27 +0100
committerAndrew Dolgov <[email protected]>2005-09-02 16:34:27 +0100
commitbf66b95bf21963a4560e24a46c56259a00a6b722 (patch)
tree80b75dbbdbc45e52b7ff9a1d9aec6eca85ecaf52 /tt-rss.js
parentc2c0c35d1d444478472fd4babdb852edf99e1c15 (diff)
catchupPage() now removes UPD images like it should
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 7c64363d9..fcafd39ba 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -225,6 +225,11 @@ function catchupPage(feed) {
rows.push(row_id);
content.rows[i].className = content.rows[i].className.replace("Unread", "");
}
+
+ var upd_img_pic = document.getElementById("FUPDPIC-" + row_id);
+ if (upd_img_pic) {
+ upd_img_pic.innerHTML = "";
+ }
}
}