summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-16 03:13:50 +0100
committerAndrew Dolgov <[email protected]>2008-05-16 03:13:50 +0100
commitb61cf20ca28b73a968fa537ca51f6cfef97fe646 (patch)
treeae3e4b4c38e411ce54de52d91771ce82c8aa21c3 /tt-rss.js
parent5ad9d132117af6a65a1b496850e7db441b36b5ad (diff)
CDM mode: remove obsolete 't' hotkey
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 3e691245d..480da1a62 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1026,14 +1026,14 @@ function hotkey_handler(e) {
return;
}
- if (keycode == 84 && shift_key) { // t
+ if (keycode == 84) { // t
var id = getActiveArticleId();
if (id) {
editArticleTags(id, getActiveFeedId(), isCdmMode());
}
}
- if (keycode == 84) { // t
+/* if (keycode == 84) { // t
var id = getActiveArticleId();
if (id) {
var cb = document.getElementById("RCHK-" + id);
@@ -1043,7 +1043,7 @@ function hotkey_handler(e) {
toggleSelectRowById(cb, "RROW-" + id);
}
}
- }
+ } */
if (keycode == 79) { // o
if (getActiveArticleId()) {