mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 10:45:55 +00:00
add action to reset category order
This commit is contained in:
15
tt-rss.js
15
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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user