forked from Alex/Pterodactyl-Panel
ui(server): fix keybinds not working in console
This commit is contained in:
parent
1b3d1a4540
commit
9057a4f9d8
@ -145,10 +145,10 @@ export default () => {
|
|||||||
|
|
||||||
// Add support for capturing keys
|
// Add support for capturing keys
|
||||||
terminal.attachCustomKeyEventHandler((e: KeyboardEvent) => {
|
terminal.attachCustomKeyEventHandler((e: KeyboardEvent) => {
|
||||||
if (e.metaKey && e.key === 'c') {
|
if ((e.ctrlKey || e.metaKey) && e.key === 'c') {
|
||||||
document.execCommand('copy');
|
document.execCommand('copy');
|
||||||
return false;
|
return false;
|
||||||
} else if (e.metaKey && e.key === 'f') {
|
} else if ((e.ctrlKey || e.metaKey) && e.key === 'f') {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
searchBar.show();
|
searchBar.show();
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user