Skip to content

Instantly share code, notes, and snippets.

@joshski
Created August 18, 2014 22:06
Show Gist options
  • Save joshski/f23722634a05df075b49 to your computer and use it in GitHub Desktop.
Save joshski/f23722634a05df075b49 to your computer and use it in GitHub Desktop.
<script>
window.addEventListener("message", receiveMessage, false);
function receiveMessage(event)
{
alert("RECEIVED!");
if (event.origin !== "http://localhost:3000")
return;
console.log("EVENT RECEIVED AND VERIFIED", event);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment