Skip to content

Instantly share code, notes, and snippets.

@jwosty
Created December 19, 2019 19:17
Show Gist options
  • Save jwosty/239408aaffd106a26dc2161f86caa641 to your computer and use it in GitHub Desktop.
Save jwosty/239408aaffd106a26dc2161f86caa641 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta charset="utf8"/>
<script>
isInterstellar = (typeof(window.interstellarBridge) !== "undefined");
</script>
</head>
<body>
<h1>This webpage is running in <span id="host" /></h1>
<script>
if (isInterstellar) {
document.getElementById("host").innerHTML = "an Interstellar application";
} else {
document.getElementById("host").innerHTML = "a vanilla web browser";
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment