mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-03 07:49:57 +00:00
parent
69d702c783
commit
2c0a7346b1
1 changed files with 6 additions and 0 deletions
|
@ -57,6 +57,12 @@ export class KeyboardNavigationHandler {
|
||||||
* @param {KeyboardEvent} event
|
* @param {KeyboardEvent} event
|
||||||
*/
|
*/
|
||||||
#keydownHandler(event) {
|
#keydownHandler(event) {
|
||||||
|
|
||||||
|
// Ignore certain key events in inputs to allow text editing.
|
||||||
|
if (event.target.matches('input') && (event.key === 'ArrowRight' || event.key === 'ArrowLeft')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (event.key === 'ArrowDown' || event.key === 'ArrowRight') {
|
if (event.key === 'ArrowDown' || event.key === 'ArrowRight') {
|
||||||
this.focusNext();
|
this.focusNext();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue