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:
19
functions.js
19
functions.js
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user