mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix mobile prev/next buttons for bookplayer
This commit is contained in:
parent
861845bba5
commit
491c7962e5
1 changed files with 2 additions and 2 deletions
|
@ -180,12 +180,12 @@ export class BookPlayer {
|
||||||
}
|
}
|
||||||
|
|
||||||
prevChapter(e) {
|
prevChapter(e) {
|
||||||
this._rendition.prev();
|
this.rendition.prev();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
nextChapter(e) {
|
nextChapter(e) {
|
||||||
this._rendition.next();
|
this.rendition.next();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue