summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Herron <[email protected]>2013-07-02 22:36:29 +1000
committerAndrew Herron <[email protected]>2013-07-02 22:36:29 +1000
commitc65bd1027ab46848493973da0515640a93815d27 (patch)
tree058f39518ec697275801f019b19f0d3ce6c02f23 /js/tt-rss.js
parentd999bc3eb2e0000aad7f92f73ed26938c7a83519 (diff)
Added alt and meta key handling to hotkeys
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index c14c65f27..46e282351 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -848,11 +848,15 @@ function hotkey_handler(e) {
var keycode = false;
var shift_key = false;
var ctrl_key = false;
+ var alt_key = false;
+ var meta_key = false;
var cmdline = $('cmdline');
shift_key = e.shiftKey;
ctrl_key = e.ctrlKey;
+ alt_key = e.altKey;
+ meta_key = e.metaKey;
if (window.event) {
keycode = window.event.keyCode;
@@ -894,6 +898,8 @@ function hotkey_handler(e) {
// ensure ^*char notation
if (shift_key) hotkey = "*" + hotkey;
if (ctrl_key) hotkey = "^" + hotkey;
+ if (alt_key) hotkey = "+" + hotkey;
+ if (meta_key) hotkey = "%" + hotkey;
hotkey = hotkey_prefix ? hotkey_prefix + " " + hotkey : hotkey;
hotkey_prefix = false;