mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
* Changed render mode to standard compliant and adjusted CSS accordantly. * Fixed HTML errors, removed XHTML reminiscences and whitespace. * Added doctype and fixed a few HTML errors. * The input field speakerStatsSearch overflows the dialog box. Added missing box-sizing. Co-authored-by: Bo Frederiksen <bo.frederiksen@semaphor.dk>
23 lines
696 B
HTML
23 lines
696 B
HTML
<!doctype html>
|
|
<html itemscope itemtype="http://schema.org/Product" prefix="og: http://ogp.me/ns#">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Jitsi API</title>
|
|
</head>
|
|
<body>
|
|
<script src="https://meet.jit.si/external_api.js"></script>
|
|
<script>
|
|
var domain = "meet.jit.si";
|
|
var options = {
|
|
roomName: "JitsiMeetAPIExample",
|
|
width: 700,
|
|
height: 180,
|
|
parentNode: undefined,
|
|
configOverwrite: {},
|
|
interfaceConfigOverwrite: {}
|
|
}
|
|
var api = new JitsiMeetExternalAPI(domain, options);
|
|
</script>
|
|
</body>
|
|
</html>
|