Skip to content

Instantly share code, notes, and snippets.

@danhollick
Created February 3, 2020 18:09
Show Gist options
  • Save danhollick/1988e698c37a7700e3940eef789dd8b0 to your computer and use it in GitHub Desktop.
Save danhollick/1988e698c37a7700e3940eef789dd8b0 to your computer and use it in GitHub Desktop.
Post back to the sandbox
// ...
<button id="swap"></button>
<script>
window.onmessage = async event => {
//...
}
document.getElementById('swap').onclick = () => {
parent.postMessage({ pluginMessage: { type: 'swap' } }, '*')
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment