Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions frontend/src/components/slides/reveal-component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,10 @@ const RevealSlidesComponent = ({
transition: deckTransition,
keyboardCondition: (event: KeyboardEvent) => !Events.fromInput(event),
url: kioskUrl,
// reveal.js auto-switches to its scroll view for mobile.
// We disable this mode because it rewrites the slide DOM that
// `@revealjs/react` owns, which crashes on `reveal.sync()` re-renders.
scrollActivationWidth: 0,
Comment thread
Light2Dark marked this conversation as resolved.
Comment thread
Light2Dark marked this conversation as resolved.
}),
[width, height, deckTransition, kioskUrl],
);
Expand Down
Loading