1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:05:55 +00:00

quick add feed dialog uses prototype

This commit is contained in:
Andrew Dolgov
2006-05-20 15:53:41 +01:00
parent 881033015a
commit 07eb917846
4 changed files with 45 additions and 71 deletions

View File

@@ -1007,3 +1007,27 @@ function toggleSubmitNotEmpty(e, submit_id) {
function isValidURL(s) {
return s.match("http://") != null || s.match("https://") != null;
}
function qafAdd() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
notify("Adding feed...");
closeInfoBox();
var feeds_doc = window.frames["feeds-frame"].document;
feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
var query = Form.serialize("feed_add_form");
xmlhttp.open("GET", "backend.php?" + query, true);
xmlhttp.onreadystatechange=dlg_frefresh_callback;
xmlhttp.send(null);
}