From bf66b95bf21963a4560e24a46c56259a00a6b722 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 2 Sep 2005 16:34:27 +0100 Subject: [PATCH] catchupPage() now removes UPD images like it should --- tt-rss.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tt-rss.js b/tt-rss.js index 7c64363d..fcafd39b 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 = ""; + } } } -- 2.39.2