Skip to content

Instantly share code, notes, and snippets.

@gs-akhan
Created April 9, 2017 22:02
Show Gist options
  • Save gs-akhan/9c4b627bdab1e5df692dc20557d5c2fd to your computer and use it in GitHub Desktop.
Save gs-akhan/9c4b627bdab1e5df692dc20557d5c2fd to your computer and use it in GitHub Desktop.
Simple webview
<!DOCTYPE html>
<html>
<head>
<title>Simple Charts</title>
</head>
<body>
</body>
<script type="text/javascript">
window.onload = function() {
document.addEventListener("message", function(data) {
alert(data.data);
});
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment