plebsaber.stream/samples/Preview.svelte
2025-08-09 00:16:28 -07:00

25 lines
369 B
Svelte

<script>
export let previewLink;
let iframe;
</script>
<iframe
class="previewFrame"
title=""
src={previewLink}
allowfullscreen
bind:this={iframe}
on:load={() => {
const newLocation = iframe.contentWindow.location.href;
window.location.href = newLocation;
}} />
<style>
.previewFrame {
width: 90vw;
height: 65vh;
border-radius: 0.6em;
}
</style>