summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index ca94dd93d..229303c42 100644
--- a/functions.js
+++ b/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);
+ }
+}
+