summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-06-04 15:28:37 +0100
committerAndrew Dolgov <[email protected]>2008-06-04 15:28:37 +0100
commit9bbbc82c754859753115e7ae879c09b3ed647cad (patch)
tree643c4ea54243dffb5445608d5a98d05f2bd8ab33 /tt-rss.js
parentec37f4f112acbe917b7343fdc3a43b4d1bccd16e (diff)
new hotkey x: un/collapse if viewing category
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 2373826f7..d917b6dc7 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1188,6 +1188,12 @@ function hotkey_handler(e) {
}
}
}
+
+ if (keycode == 88) { // x
+ if (activeFeedIsCat()) {
+ toggleCollapseCat(getActiveFeedId());
+ }
+ }
}
/* Prefix f */