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

remove support for hiding empty categories in prefs editor because people are dumb

This commit is contained in:
Andrew Dolgov
2013-05-06 12:50:52 +04:00
parent 0e72dbd79e
commit e5e6cde06a
2 changed files with 2 additions and 27 deletions

View File

@@ -1610,21 +1610,6 @@ function resetCatOrder() {
}
}
function toggleHiddenFeedCats() {
try {
notify_progress("Loading, please wait...");
new Ajax.Request("backend.php", {
parameters: "?op=pref-feeds&method=togglehiddenfeedcats",
onComplete: function(transport) {
updateFeedList();
} });
} catch (e) {
exception_error("toggleHiddenFeedCats");
}
}
function editCat(id, item, event) {
try {
var new_name = prompt(__('Rename category to:'), item.name);