1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:15:56 +00:00

implement filter drag and drop sorting

This commit is contained in:
Andrew Dolgov
2013-03-31 17:15:23 +04:00
parent da46d21e88
commit a86ba0a67a
3 changed files with 91 additions and 3 deletions

View File

@@ -1563,6 +1563,24 @@ function clearArticleAccessKeys() {
return false;
}
function resetFilterOrder() {
try {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-filters&method=filtersortreset",
onComplete: function(transport) {
updateFilterList();
} });
} catch (e) {
exception_error("resetFilterOrder");
}
}
function resetFeedOrder() {
try {
notify_progress("Loading, please wait...");