Skip to content

Commit

Permalink
Fix iframe resizer script path issue (#566)
Browse files Browse the repository at this point in the history
Signed-off-by: Cintia Sanchez Garcia <[email protected]>
  • Loading branch information
cynthia-sg authored Apr 11, 2024
1 parent c33591c commit 4cac0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embed/embed.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
const resizer = urlParams.get('iframe-resizer');
if (typeof resizer !== null && resizer === 'true') {
const script = document.createElement('script');
script.setAttribute('src', './embed/assets/iframeResizer.contentWindow-v4.3.9.min.js');
script.setAttribute('src', './assets/iframeResizer.contentWindow-v4.3.9.min.js');
document.body.appendChild(script);
}
})();
Expand Down

0 comments on commit 4cac0ae

Please sign in to comment.