fix(embed) fix embed meeting code

This commit is contained in:
Tudor-Ovidiu Avram 2020-09-16 10:22:33 +03:00 committed by Дамян Минков
parent 312949eef6
commit 7f67f78db6
1 changed files with 2 additions and 2 deletions

View File

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