1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00

highlight active headline after post loaded (in view_callback)

This commit is contained in:
Andrew Dolgov 2005-08-26 05:49:13 +01:00
parent c33c296c04
commit b10e155060

View File

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