Forked from jadbox/gist:da3c1ca665b041c7c92ff4f5f74f3721
Created
April 15, 2023 01:28
-
-
Save thomasgroch/83753212ee3002b1dccd55eeff6d2731 to your computer and use it in GitHub Desktop.
roomtest.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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