diff --git a/tt-rss.js b/tt-rss.js index 4b463cf3b..36aec2f8f 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -613,6 +613,18 @@ function quickMenuGo(opid) { resize_headlines(); } + if (opid == "qmcToggleReorder") { + feedlist_sortable_enabled = !feedlist_sortable_enabled; + + if (feedlist_sortable_enabled) { + notify_info("Category reordering enabled"); + toggle_sortable_feedlist(true); + } else { + notify_info("Category reordering disabled"); + toggle_sortable_feedlist(false); + } + } + if (opid == "qmcResetCats") { if (confirm(__("Reset category order?"))) { diff --git a/tt-rss.php b/tt-rss.php index 5f63b2e85..5e8bc1311 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -187,13 +187,18 @@ + + + + + + - - +