Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thomasgroch/83753212ee3002b1dccd55eeff6d2731 to your computer and use it in GitHub Desktop.
Save thomasgroch/83753212ee3002b1dccd55eeff6d2731 to your computer and use it in GitHub Desktop.
roomtest.html
<script src="https://meet.jit.si/external_api.js"></script>
<div id="meet">
</div>
hello world
<script>
var options = {
roomName: "jdtest",
width: 700,
height: 700,
parentNode: document.querySelector('#meet')
}
var domain = "meet.jit.si";
var api = new JitsiMeetExternalAPI(domain, options);
var v = x => {
api.dispose();
};
api.on("videoConferenceLeft", v);
api.on("readyToClose", v);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment