mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Expose chapter shortcuts
- Keyboard shortcuts for PageUp and PageDown for navigating chapters
This commit is contained in:
parent
a77f9891b2
commit
027a7145a7
1 changed files with 6 additions and 0 deletions
|
@ -1156,6 +1156,12 @@ import { appRouter } from '../../../components/appRouter';
|
|||
case '<':
|
||||
playbackManager.decreasePlaybackRate(currentPlayer);
|
||||
break;
|
||||
case 'PageUp':
|
||||
playbackManager.nextChapter(currentPlayer);
|
||||
break;
|
||||
case 'PageDown':
|
||||
playbackManager.previousChapter(currentPlayer);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue