From 0df398da2c83693646605c91f29670405da2d22f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 24 Aug 2007 05:49:57 +0100 Subject: code cleanups, make feedlist_callback async --- tt-rss.js | 37 ++++++++----------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 6a0ae0f9f..3a134d613 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -219,14 +219,10 @@ function updateFeedList(silent, fetch) { debug("updateFeedList Q=" + query_str); - if (xmlhttp_ready(xmlhttp)) { - xmlhttp.open("GET", query_str, true); - xmlhttp.onreadystatechange=feedlist_callback; - xmlhttp.send(null); - } else { - debug("xmlhttp busy"); - //printLockingError(); - } + new Ajax.Request(query_str, { + onComplete: function(transport) { + feedlist_callback2(transport); + } }); } @@ -238,14 +234,10 @@ function catchupAllFeeds() { debug("catchupAllFeeds Q=" + query_str); - if (xmlhttp_ready(xmlhttp)) { - xmlhttp.open("GET", query_str, true); - xmlhttp.onreadystatechange=feedlist_callback; - xmlhttp.send(null); - } else { - debug("xmlhttp busy"); - //printLockingError(); - } + new Ajax.Request(query_str, { + onComplete: function(transport) { + feedlist_callback2(transport); + } }); global_unread = 0; updateTitle(""); @@ -297,19 +289,6 @@ function search() { viewCurrentFeed(0, ""); } -function localPiggieFunction(enable) { - if (enable) { - var query_str = "backend.php?op=feeds&subop=piggie"; - - if (xmlhttp_ready(xmlhttp)) { - - xmlhttp.open("GET", query_str, true); - xmlhttp.onreadystatechange=feedlist_callback; - xmlhttp.send(null); - } - } -} - // if argument is undefined, current subtitle is not updated // use blank string to clear subtitle function updateTitle(s) { -- cgit v1.2.3