add a hotkey for menu toggling and a secondary hotkey to search
This commit is contained in:
parent
61318dd63f
commit
8542dc33e3
|
@ -124,10 +124,14 @@ export class AppComponent implements OnInit {
|
||||||
})
|
})
|
||||||
|
|
||||||
this.hotkeysService.add([
|
this.hotkeysService.add([
|
||||||
new Hotkey('/', (event: KeyboardEvent): boolean => {
|
new Hotkey(['/', 's'], (event: KeyboardEvent): boolean => {
|
||||||
document.getElementById('search-video').focus()
|
document.getElementById('search-video').focus()
|
||||||
return false // Prevent bubbling
|
return false
|
||||||
}, undefined, 'Focus the search bar'),
|
}, 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 => {
|
new Hotkey('g s', (event: KeyboardEvent): boolean => {
|
||||||
this.router.navigate([ '/videos/subscriptions' ])
|
this.router.navigate([ '/videos/subscriptions' ])
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Reference in New Issue