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

prefs: some async work

This commit is contained in:
Andrew Dolgov
2009-01-24 07:11:42 +01:00
parent 163723c4e6
commit 350468d018
3 changed files with 106 additions and 135 deletions

View File

@@ -2086,4 +2086,23 @@ function updateFeedBrowser() {
}
}
function browseFeeds(limit) {
try {
var query = "backend.php?op=pref-feeds&subop=browse";
notify_progress("Loading, please wait...", true);
new Ajax.Request(query, {
onComplete: function(transport) {
infobox_callback2(transport);
} });
return false;
} catch (e) {
exception_error("browseFeeds", e);
}
}