Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference Error: Reveal is not defined. Initialization Error #13

Open
igauravsehrawat opened this issue May 3, 2022 · 2 comments
Open

Comments

@igauravsehrawat
Copy link

Greetings and morning all,

I am facing this unexpected issue
I have included the dependencies as shown in README.md
Screen Shot 2022-05-03 at 08 22 09

But on my slides, I am getting below error
Screen Shot 2022-05-03 at 08 21 34

I tried to include all dependencies in script tag though it's not suggested
but then I get below error.

Screen Shot 2022-05-03 at 08 28 07

Any help will be appreciated.
What am I doing wrong?

@jungleBadger
Copy link

jungleBadger commented Aug 12, 2024

I just went through a similar scenario. To resolve that, you need to expose your Reveal instance to the global Window object, as demonstrated below:

import Reveal from "reveal.js";
import { useRef } from "preact/hooks";

const deckDivRef = useRef(null); 

window.Reveal = new Reveal(deckDivRef.current, {
    transition: "slide",
    multiplex: {
        "secret": null, // fill for master execution
        "id": "35c115997a5e0645", //it must be Id here - the lib will convert to socketId
        "url": 'https://reveal-multiplex.glitch.me/' // Location of socket.io server
    },
    dependencies: [
        { src: 'https://reveal-multiplex.glitch.me/socket.io/socket.io.js', async: true },
        { src: 'https://reveal-multiplex.glitch.me/client.js', async: true } // or server
    ],
    // other config options
});

I hope it helps.

Stay safe!

@kemo-1
Copy link

kemo-1 commented Dec 10, 2024

THANK YOU !! @jungleBadger

i was struggling with this issue and your solution fixed it i am using vite without a framework

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants