Embed Blocktopus to a Token Sale landing page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script> | |
// The following Javascript resizes the iframe's height when Blocktopus' embeded page's height changes | |
window.addEventListener("message", receiveMessage, false); | |
function receiveMessage(event) { | |
if (event.data.event_id == 'blocktopus_height') { | |
iframe = document.getElementById("blocktopus_iframe"); | |
iframe.height = event.data.value + "px"; | |
} | |
} | |
</script> | |
<iframe id='blocktopus_iframe' src="https://embed.blocktopus.io/token_buyers/sign_in?organization=REGISTERED_ORGANIZATION_NAME" width="100%" height="500px"/> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment