1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #3547 from thornbill/touching-books

Fix touch events in epub player

(cherry picked from commit 5ede3c8e47)
Signed-off-by: Joshua Boniface <joshua@boniface.me>
This commit is contained in:
Bill Thornton 2022-04-12 16:08:00 -04:00 committed by Joshua Boniface
parent 39a36208c0
commit 396f4b1ed2
3 changed files with 7 additions and 5 deletions

View file

@ -286,7 +286,9 @@ export class BookPlayer {
width: '100%',
height: renderHeight,
// TODO: Add option for scrolled-doc
flow: 'paginated'
flow: 'paginated',
// Scripted content is required to allow touch event passthrough in Safari
allowScriptedContent: true
});
this.currentSrc = downloadHref;