@saooti/octopus-sdk 36.0.57 → 36.0.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
title="miniplayer"
|
|
20
20
|
:src="iFrameSrc"
|
|
21
21
|
width="100%"
|
|
22
|
+
allow="clipboard-read; clipboard-write"
|
|
22
23
|
:height="iFrameHeight"
|
|
23
24
|
class="max-iframe mx-3"
|
|
24
25
|
/>
|
|
@@ -218,7 +219,7 @@ export default defineComponent({
|
|
|
218
219
|
}
|
|
219
220
|
},
|
|
220
221
|
iFrame(): string {
|
|
221
|
-
return `<iframe src="${this.iFrameSrc}" width="100%" height="${this.iFrameHeight}" scrolling="no" frameborder="0"></iframe>`;
|
|
222
|
+
return `<iframe src="${this.iFrameSrc}" width="100%" height="${this.iFrameHeight}" allow="clipboard-read; clipboard-write; autoplay" scrolling="no" frameborder="0"></iframe>`;
|
|
222
223
|
},
|
|
223
224
|
isPodcastNotVisible(): boolean {
|
|
224
225
|
return (
|