Last active
September 6, 2019 00:16
-
-
Save le4ker/6808d43003d27f28d533ff55583f09a2 to your computer and use it in GitHub Desktop.
Blocktopus embed iframe for signing-in to third-party service
This file contains hidden or 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> | |
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"; | |
} | |
else if (event.data.event_id == 'blocktopus_token') { | |
console.log(event.data.value); | |
} | |
} | |
</script> | |
<iframe id='blocktopus_iframe' src="https://embed.blocktopus.io/token_buyers/sign_in?organization=eubx" width="100%" height="500px"/> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment