summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-06 12:50:52 +0400
committerAndrew Dolgov <[email protected]>2013-05-06 12:50:52 +0400
commite5e6cde06a79551c42a7821722d33683e0a6829f (patch)
tree21b9ca92faa59d6afd4e3bb15234d7c73cc33ef5 /js/prefs.js
parent0e72dbd79e05c073ad5c7ed2f87866152186e092 (diff)
remove support for hiding empty categories in prefs editor because people are dumb
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/prefs.js b/js/prefs.js
index 4346054ef..e226459fc 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -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);