if (UPDATE_POST_ON_CHECKSUM_CHANGE &&
$orig_content_hash != $content_hash) {
-
- print "$orig_content_hash : $content_hash";
-
$last_read_qpart = 'last_read = null,';
}
var searchbox = document.getElementById("searchbox");
searchbox.value = search_query;
+ markHeadline(active_post_id);
+
notify("");
}
return
}
+ if (active_feed_id != feed)
+ active_post_id = false;
+
active_feed_id = feed;
- active_post_id = false;
active_offset = skip;
var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
}
+function markHeadline(id) {
+ var row = document.getElementById("RROW-" + id);
+ if (row) {
+ row.className = row.className + "Selected";
+ }
+}
+
function cleanSelected(element) {
var content = document.getElementById(element);