Skip to content

Instantly share code, notes, and snippets.

@valueof
Last active August 29, 2015 14:27
Show Gist options
  • Save valueof/e42fa001e800df5b2225 to your computer and use it in GitHub Desktop.
Save valueof/e42fa001e800df5b2225 to your computer and use it in GitHub Desktop.
<!doctype html>
<style>body {background-color: red; height: 500px; width: 500px;}</style>
<script>
window.addEventListener('message', function (ev) {
var message = ev.data.split(':')
if (message[0] != 'yo') {
return
}
window.parent.postMessage([
message[1],
document.body.scrollHeight + 'px',
document.body.scrollWidth + 'px'
].join(':'), '*')
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment