We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 428091a commit 2c09f28Copy full SHA for 2c09f28
src/embed.ts
@@ -536,8 +536,8 @@ export abstract class Embed {
536
if(!this.iframe) {
537
var iframeContent = document.createElement("iframe");
538
var embedUrl = this.config.uniqueId ? utils.addParamToUrl(this.config.embedUrl, 'uid', this.config.uniqueId) : this.config.embedUrl;
539
- iframeContent.style.width="100%";
540
- iframeContent.style.height="100%";
+ iframeContent.style.width = '100%';
+ iframeContent.style.height = '100%';
541
iframeContent.setAttribute("src", embedUrl);
542
iframeContent.setAttribute("scrolling", "no");
543
iframeContent.setAttribute("allowfullscreen", "true");
0 commit comments