summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-26 05:49:13 +0100
committerAndrew Dolgov <[email protected]>2005-08-26 05:49:13 +0100
commitb10e155060d8486af22eb5a29d2862972824cbef (patch)
tree9ab9fe1e07cb333d43096284156e2dbf0700982b /tt-rss.js
parentc33c296c04eed210109bb85b0299633fa779a877 (diff)
highlight active headline after post loaded (in view_callback)
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files 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);