mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 09:36:01 +00:00
support meta key #199
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
if (e.shiftKey) keyText += 'Shift+';
|
||||
if (e.metaKey) keyText += 'Command+';
|
||||
if (e.altKey) keyText += 'Alt+';
|
||||
if (e.key != 'Control' && e.key != 'Alt' && e.key != 'Shift') {
|
||||
if (e.key != 'Control' && e.key != 'Alt' && e.key != 'Shift' && e.key != 'Meta') {
|
||||
keyText += _.upperFirst(e.key);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user