jiti-meet/modules
Etienne CHAMPETIER 9a4cee1818 Improve keyboard shortcut handling
Use KeyboardEvent.key if available,
match both lower and upper case letters to keep previous behaviour

KeyboardEvent is a mess.

KeyboardEvent.which gives you, in theory, a decimal representation of the key pressed.
"r" or "R" gives you 82, which is "R", you can look at KeyboardEvent.shiftKey,
but you don't have access to capslock...

Maybe you want to use numbers, but of course NumPad will not give you the same than
"normal" numbers ...

Now if you use something else than letter, for exemple "?",
on a QWERTY keyboard "/" and "?" gives you 191,
on a AZERTY keyboard "," and "?" gives you 188, so we have to stick to letters.

This was for keydown and keyup events, keypressed event return the real char
(lower "a", "/", "?", ...) but it fails in some cases

The only non broken property is KeyboardEvent.key,
but it's only supported since Chrome 51, Opera 38, and not supported by Safari
https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key

A good reference & test:
http://unixpapa.com/js/testkey.html
http://unixpapa.com/js/key.html

Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
2016-07-21 16:58:52 +02:00
..
API Fixes issue #716 2016-07-11 11:57:24 -05:00
TokenData Changes the implementation of the iframe API to use postis 2016-06-17 15:35:40 -05:00
UI Avoids multiple dialog when showing lock attempt errors. 2016-07-15 15:40:18 -05:00
config Implements server side connection establishment 2016-03-28 16:19:32 -05:00
connectionquality Removes console.debug 2016-06-24 12:25:21 -05:00
devices Merge remote-tracking branch 'remotes/upstream/master' into gum_permission_dialog_guidance 2016-06-24 13:02:58 +03:00
keyboardshortcut Improve keyboard shortcut handling 2016-07-21 16:58:52 +02:00
recorder Fix recorder error and state handling 2016-05-05 11:46:06 -05:00
settings JWT client support 2016-06-13 16:11:44 -05:00
statistics use statistics module from the library 2016-02-02 17:12:40 +02:00
translation Changes translation module to load async 2016-03-30 21:01:21 -05:00
util code cleanup: remove unused settings 2016-02-25 12:40:24 +02:00
FollowMe.js Adds comments for processing nextOnStage. 2016-06-07 16:39:08 -05:00