seb-win-refactoring/SafeExamBrowser.Proctoring/JitsiMeet/index.html

28 lines
No EOL
928 B
HTML

<html>
<head>
<meta charset="utf-8" />
</head>
<body style="margin: 0">
<div id="placeholder" />
<script src='https://meet.jit.si/external_api.js'></script>
<script type="text/javascript">
var domain = "%%_DOMAIN_%%";
var options = {
configOverwrite: {
startAudioOnly: false,
startWithAudioMuted: true,
startWithVideoMuted: false,
disable1On1Mode: true
},
height: "100%",
jwt: "%%_TOKEN_%%",
parentNode: document.querySelector('#placeholder'),
roomName: "%%_ROOM_NAME_%%",
width: "100%"
};
var api = new JitsiMeetExternalAPI(domain, options);
api.executeCommand("subject", "%%_SUBJECT_%%");
</script>
</body>
</html>