summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-12-27 15:39:40 +0300
committerAndrew Dolgov <[email protected]>2010-12-27 15:39:40 +0300
commit7613280acc7bbde02e302b4118a9fd068ce82cbf (patch)
treee065a415a96dc60b8035a9c9e1d6bcf7f713a43b /tt-rss.js
parent7bb8d39a06e232d85b8a469ecb6e41963f56bb77 (diff)
fix 'x' hotkey, add FeedTree.collapseCat
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index d619c4c02..546c22131 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -808,7 +808,7 @@ function hotkey_handler(e) {
if (keycode == 88) { // x
if (activeFeedIsCat()) {
- toggleCollapseCat(getActiveFeedId());
+ dijit.byId("feedTree").collapseCat(getActiveFeedId());
}
}
}