1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

catchupRelative: move to ajax.request

This commit is contained in:
Andrew Dolgov 2007-08-30 02:01:23 +01:00
parent 828f22b7eb
commit 5fe7767c0e

View File

@ -1331,10 +1331,11 @@ function catchupRelativeToArticle(below) {
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
param_escape(ids_to_mark.toString()) + "&cmode=0";
xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=catchup_callback;
xmlhttp_rpc.send(null);
new Ajax.Request(query, {
onComplete: function(transport) {
catchup_callback2(transport);
} });
}
}