Skip to content

Instantly share code, notes, and snippets.

@gongstr
gongstr / hosting_frame.html
Created May 1, 2023 18:04
Sandbox Implementation
<html>
<script>
window.addEventListener("message", ({ data }) => {
const sandbox = document.getElementById("sandbox");
console.log(data);
if (data.name === "survey.closed") {
sandbox.style.height = "0px";
sandbox.style.width = "0px" ;
sandbox.style.opacity = 0;
return;