Преглед изворни кода

initialize deck and navigate to the first page

Yuki Takei пре 3 година
родитељ
комит
332985a51c
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      packages/presentation/src/components/PresentationWithReveal.tsx

+ 3 - 1
packages/presentation/src/components/PresentationWithReveal.tsx

@@ -22,7 +22,9 @@ export const Presentation = (props: Props): JSX.Element => {
 
   useEffect(() => {
     if (children != null) {
-      Reveal.initialize(revealOptions);
+      const deck = new Reveal(revealOptions);
+      deck.initialize()
+        .then(() => deck.slide(0)); // navigate to the first slide
     }
   }, [children, revealOptions]);