From 09c816cac4d1a083093ac12f7e0b68c578eb9669 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 28 Oct 2012 11:03:29 +0400 Subject: remove unexpanded CDM ajax loading --- js/viewfeed.js | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) (limited to 'js') diff --git a/js/viewfeed.js b/js/viewfeed.js index ff09c0a5a..c55b5ccd9 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -1333,52 +1333,6 @@ function cdmExpandArticle(id) { if (!Element.visible(elem)) { Element.show(elem); Element.hide("CEXC-" + id); - - if ($("CWRAP-" + id).innerHTML == "") { - - $("FUPDPIC-" + id).src = "images/indicator_tiny.gif"; - - $("CWRAP-" + id).innerHTML = "
" + - __("Loading, please wait...") + "
"; - - var query = "?op=rpc&method=cdmGetArticle&id=" + param_escape(id); - - var neighbor_ids = getRelativePostIds(id); - - /* only request uncached articles */ - var cids_to_request = []; - - for (var i = 0; i < neighbor_ids.length; i++) { - if (cids_requested.indexOf(neighbor_ids[i]) == -1) - if ($("CWRAP-" + neighbor_ids[i]).innerHTML == "") { - cids_to_request.push(neighbor_ids[i]); - cids_requested.push(neighbor_ids[i]); - } - } - - console.log("additional ids: " + cids_to_request.toString()); - - query = query + "&cids=" + cids_to_request.toString(); - - console.log(query); - - new Ajax.Request("backend.php", { - parameters: query, - onComplete: function(transport) { - - $("FUPDPIC-" + id).src = 'images/blank_icon.gif'; - - handle_rpc_json(transport); - - var reply = JSON.parse(transport.responseText); - - reply.each(function(article) { - $("CWRAP-" + article['id']).innerHTML = article['content']; - cids_requested.remove(article['id']); - }); - }}); - - } } var new_offset = $("RROW-" + id).offsetTop; -- cgit v1.2.3