1
0
Fork 0
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:
Bill Thornton 2020-11-20 17:11:32 -05:00
parent 861845bba5
commit 491c7962e5

View file

@ -180,12 +180,12 @@ export class BookPlayer {
}
prevChapter(e) {
this._rendition.prev();
this.rendition.prev();
e.preventDefault();
}
nextChapter(e) {
this._rendition.next();
this.rendition.next();
e.preventDefault();
}