Ctrl + comma to open settings

This commit is contained in:
Eduard Urbach 2017-10-17 18:16:44 +02:00
parent c24d954f9e
commit e9b6cb3ac8

View File

@ -816,5 +816,14 @@ export class AnimeNotifier {
e.stopPropagation()
return
}
// Ctrl + , = Settings
if(e.ctrlKey && e.keyCode == 188) {
this.app.load("/settings")
e.preventDefault()
e.stopPropagation()
return
}
}
}