From: Andrew Herron Date: Tue, 2 Jul 2013 12:36:29 +0000 (+1000) Subject: Added alt and meta key handling to hotkeys X-Git-Tag: 1.9~77^2~2^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=c65bd1027ab46848493973da0515640a93815d27;p=tt-rss.git Added alt and meta key handling to hotkeys --- diff --git a/js/tt-rss.js b/js/tt-rss.js index c14c65f2..46e28235 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;