summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorChris Chernesky <[email protected]>2011-07-18 12:24:41 -0400
committerChris Chernesky <[email protected]>2011-07-18 12:24:41 -0400
commitfe66e229d7445e67d1f8efe8042b92d6af26f66f (patch)
treeb21d3522eefb47fc1357e5a8941bbb28c93f6531 /tt-rss.js
parent44cddbcedb2425d280c67fc15ff9fdbe749cceb1 (diff)
adding an email article hotkey 'e'
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js5
1 files changed, 5 insertions, 0 deletions
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});