From b10e155060d8486af22eb5a29d2862972824cbef Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Aug 2005 05:49:13 +0100 Subject: [PATCH] highlight active headline after post loaded (in view_callback) --- tt-rss.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tt-rss.js b/tt-rss.js index bab06f451..422d14d0d 100644 --- 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);