|
@@ -35,8 +35,8 @@ function EmbedMeeting({ t, url }: Props) {
|
35
|
35
|
* @returns {string} The iframe embed code.
|
36
|
36
|
*/
|
37
|
37
|
const getEmbedCode = () =>
|
38
|
|
- `<iframe allow="camera; microphone; display-capture" src="${url}"`
|
39
|
|
- + ' allowfullscreen="true" style="height: 100%; width: 100%; border: 0px;"></iframe>';
|
|
38
|
+ `<iframe allow="camera; microphone; fullscreen; display-capture" src="${url}"`
|
|
39
|
+ + ' style="height: 100%; width: 100%; border: 0px;"></iframe>';
|
40
|
40
|
|
41
|
41
|
return (
|
42
|
42
|
<Dialog
|