forked from Mirrors/gomuks
web/keybindings: allow using page up/down and home/end in timeline
This commit is contained in:
parent
bb52f1cfa9
commit
c5452a570e
1 changed files with 2 additions and 0 deletions
|
@ -92,6 +92,8 @@ export default class Keybindings {
|
|||
&& this.keyUpMap[keyToString(evt)] === undefined
|
||||
&& (!evt.ctrlKey || evt.key === "v" || evt.key === "a")
|
||||
&& !evt.altKey
|
||||
&& key !== "PageUp" && key !== "PageDown"
|
||||
&& key !== "Home" && key !== "End"
|
||||
) {
|
||||
document.getElementById("message-composer")?.focus()
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue