main: move to async infobox calls

This commit is contained in:
Andrew Dolgov 2007-08-24 05:40:23 +01:00
parent d395a94275
commit 2a8504cd39
1 changed files with 27 additions and 26 deletions

View File

@ -645,34 +645,35 @@ function userSwitch() {
}
function editFeedDlg(feed) {
try {
disableHotkeys();
if (!feed) {
alert(__("Please select some feed first."));
return;
}
if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
alert(__("You can't edit this kind of feed."));
return;
}
if (xmlhttp_ready(xmlhttp)) {
if (feed > 0) {
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
param_escape(feed), true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
} else {
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
param_escape(-feed-11), true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
disableHotkeys();
if (!feed) {
alert(__("Please select some feed first."));
return;
}
} else {
printLockingError();
if ((feed <= 0 && feed > -10) || activeFeedIsCat() || tagsAreDisplayed()) {
alert(__("You can't edit this kind of feed."));
return;
}
var query = "";
if (feed > 0) {
query = "backend.php?op=pref-feeds&subop=editfeed&id=" + param_escape(feed);
} else {
query = "backend.php?op=pref-labels&subop=edit&id=" + param_escape(-feed-11);
}
new Ajax.Request(query, {
onComplete: function(transport) {
infobox_callback2(transport);
} });
} catch (e) {
exception_error("editFeedDlg", e);
}
}