]> git.wh0rd.org - tt-rss.git/commitdiff
catchupPage() now removes UPD images like it should
authorAndrew Dolgov <fox@bah.spb.su>
Fri, 2 Sep 2005 15:34:27 +0000 (16:34 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Fri, 2 Sep 2005 15:34:27 +0000 (16:34 +0100)
tt-rss.js

index 7c64363d989c0c077af4cd72f58ef77062aab245..fcafd39bab24a3538549ec06ae74a9a107112757 100644 (file)
--- 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 = "";
+                       } 
                }
        }