summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-29 09:01:53 +0100
committerAndrew Dolgov <[email protected]>2008-08-29 09:01:53 +0100
commit9d393c84da965ebdcdaba26491ad0649c273af18 (patch)
tree7d004e4fbdbea3dcba1839d41f8f50c5a6ce4441 /tt-rss.js
parent782ddd701480eb36767d94a1549f956c2ab8cc35 (diff)
add action to reset category order
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);
}