Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/web-app-external/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
class="size-full"
:title="iFrameTitle"
allowfullscreen
allow="clipboard-read *; clipboard-write *"
/>
<div v-if="appUrl && method === 'POST' && formParameters" class="size-full">
<form :action="appUrl" target="app-iframe" method="post">
Expand All @@ -30,6 +31,7 @@
class="size-full"
:title="iFrameTitle"
allowfullscreen
allow="clipboard-read *; clipboard-write *"
/>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`The app provider extension > should be able to load an iFrame via get 1`] = `
"<!--v-if-->

<iframe src="https://example.test/d12ab86/loe009157-MzBw" class="size-full" title="&quot;example-app&quot; app content area" allowfullscreen=""></iframe>
<iframe src="https://example.test/d12ab86/loe009157-MzBw" class="size-full" title="&quot;example-app&quot; app content area" allowfullscreen="" allow="clipboard-read *; clipboard-write *"></iframe>

<!--v-if-->"
`;
Expand All @@ -19,7 +19,7 @@ exports[`The app provider extension > should be able to load an iFrame via post
<div><input name="access_token_ttl" type="hidden" value="123456"></div>
<!--v-if-->
<!--v-if-->
</form> <iframe name="app-iframe" class="size-full" title="&quot;example-app&quot; app content area" allowfullscreen=""></iframe>
</form> <iframe name="app-iframe" class="size-full" title="&quot;example-app&quot; app content area" allowfullscreen="" allow="clipboard-read *; clipboard-write *"></iframe>
</div>"
`;

Expand Down