We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 566b45f commit 6b81d1cCopy full SHA for 6b81d1c
1 file changed
src/iframe/iframe.ts
@@ -5,10 +5,9 @@ const createIframe = (src: string): HTMLElement => {
5
iframe.style.setProperty("width", "100%");
6
iframe.style.setProperty("height", "100%");
7
iframe.style.setProperty("border", "none");
8
- iframe.allow = "clipboard-write";
9
- iframe.allow = "local-network-access"
10
- iframe.src = src;
+ iframe.allow = "clipboard-write; local-network-access";
11
+ iframe.src = src;
12
13
return wrapWithLoader(iframe);
14
};
0 commit comments