summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 495b48881..2bbe782cb 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -601,6 +601,21 @@ function quickMenuGo(opid) {
resize_headlines();
}
+ if (opid == "qmcResetCats") {
+
+ if (confirm(__("Reset category order?"))) {
+
+ var query = "backend.php?op=feeds&subop=catsortreset";
+
+ notify_progress("Loading, please wait...", true);
+
+ new Ajax.Request(query, {
+ onComplete: function(transport) {
+ window.setTimeout('updateFeedList(false, false)', 50);
+ } });
+ }
+ }
+
} catch (e) {
exception_error("quickMenuGo", e);
}