summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
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;