Allow to select connection profile with arrow keys

This commit is contained in:
Thomas Nordquist
2019-06-24 12:27:15 +02:00
parent 341ab44f9e
commit b27df0c0d8
2 changed files with 33 additions and 11 deletions

View File

@@ -1,6 +1,11 @@
export enum KeyCodes {
backspace = 8,
tab = 9,
enter = 13,
escape = 27,
arrow_left = 37,
arrow_up = 38,
arrow_right = 39,
arrow_down = 40,
delete = 46,
}