From fe66e229d7445e67d1f8efe8042b92d6af26f66f Mon Sep 17 00:00:00 2001 From: Chris Chernesky Date: Mon, 18 Jul 2011 12:24:41 -0400 Subject: adding an email article hotkey 'e' --- tt-rss.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 1d8d3add8..d613b7d49 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -680,6 +680,11 @@ function hotkey_handler(e) { if (!hotkey_prefix) { + if (keycode == 69) { // e + var id = getActiveArticleId(); + emailArticle(id); + } + if ((keycode == 191 || keychar == '?') && shift_key) { // ? if (!Element.visible("hotkey_help_overlay")) { Effect.Appear("hotkey_help_overlay", {duration : 0.3}); -- cgit v1.2.3