summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-09-29 04:44:58 +0100
committerAndrew Dolgov <[email protected]>2006-09-29 04:44:58 +0100
commitabbe0154f7a7611a67845c45cc18254a4e08d6e9 (patch)
treec5a3fc3b28ff5f06c43dd30d45237cf53e0fe42a /viewfeed.js
parent7bc4f2517f6bf771ed937f37df73689867dbac98 (diff)
move counters processing to different xmlhttp object
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 1fab25027..9951636cb 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1,7 +1,5 @@
var active_post_id = false;
-//var xmlhttp_rpc = Ajax.getTransport();
-
function headlines_callback() {
if (xmlhttp.readyState == 4) {
debug("headlines_callback");
@@ -54,8 +52,6 @@ function view(id, feed_id) {
var query = "backend.php?op=view&id=" + param_escape(id) +
"&feed=" + param_escape(feed_id);
- xmlhttp.abort();
-
if (xmlhttp_ready(xmlhttp)) {
xmlhttp.open("GET", query, true);
xmlhttp.onreadystatechange=article_callback;