From 8542dc33e32ca28d542eaa9a25db7c20eccfd6f6 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sun, 2 Sep 2018 21:46:43 +0200 Subject: [PATCH] add a hotkey for menu toggling and a secondary hotkey to search --- client/src/app/app.component.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 40eac7fb8..5086384f4 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts @@ -124,10 +124,14 @@ export class AppComponent implements OnInit { }) this.hotkeysService.add([ - new Hotkey('/', (event: KeyboardEvent): boolean => { + new Hotkey(['/', 's'], (event: KeyboardEvent): boolean => { document.getElementById('search-video').focus() - return false // Prevent bubbling + return false }, undefined, 'Focus the search bar'), + new Hotkey('b', (event: KeyboardEvent): boolean => { + this.toggleMenu() + return false + }, undefined, 'Toggle the left menu'), new Hotkey('g s', (event: KeyboardEvent): boolean => { this.router.navigate([ '/videos/subscriptions' ]) return false -- 2.41.0