]> git.wh0rd.org - tt-rss.git/commitdiff
highlight active headline after post loaded (in view_callback)
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 26 Aug 2005 04:49:13 +0000 (05:49 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 26 Aug 2005 04:49:13 +0000 (05:49 +0100)
tt-rss.js

index bab06f4516340868d485bec9133d21f2bbc7f34a..422d14d0d47a5482e2c31e8b26ee581a7c961b7f 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -116,6 +116,7 @@ function view_callback() {
        var container = document.getElementById('content');
        if (xmlhttp_view.readyState == 4) {
                container.innerHTML=xmlhttp_view.responseText;          
+               markHeadline(active_post_id);
        }
 }
 
@@ -327,8 +328,7 @@ function view(id,feed_id) {
        }       
 
        cleanSelected("headlinesList");
-
-       crow.className = crow.className + "Selected";
+//     crow.className = crow.className + "Selected";
 
        var upd_img_pic = document.getElementById("FUPDPIC-" + id);