Hello, i am using angular-hotkeys package in my project. Below is my shortcut key
this.hotkeyCtrlB = hotkeysService.add(new Hotkey(['ctrl+s'], this.ctrlsPressed));
My focus is on an input element but i need to perform an action when i click ctrl+s. But my event is not raised here. It works when there is no focus on input. Please help
Hello, i am using angular-hotkeys package in my project. Below is my shortcut key this.hotkeyCtrlB = hotkeysService.add(new Hotkey(['ctrl+s'], this.ctrlsPressed));
My focus is on an input element but i need to perform an action when i click ctrl+s. But my event is not raised here. It works when there is no focus on input. Please help