bugfix: catchupAllFeeds was broken in iframe transition

This commit is contained in:
Andrew Dolgov 2006-11-04 13:09:40 +01:00
parent 2513ae2bc9
commit ca2f46a72d
1 changed files with 9 additions and 2 deletions

View File

@ -249,9 +249,16 @@ function catchupAllFeeds() {
notify("Marking all feeds as read...");
var feeds_frame = document.getElementById("feeds-frame");
debug("catchupAllFeeds Q=" + query_str);
feeds_frame.src = query_str;
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query_str, true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
} else {
debug("xmlhttp busy");
//printLockingError();
}
global_unread = 0;
updateTitle("");