Files
webrtc/examples/example.html
John Selbie 260e7eff20 Move JS below markup in examples/example.html
Our JS examples assume the DOM has been loaded. This change ensures that
the DOM has been loaded before JS starts executing.
2022-03-29 10:57:34 -04:00

35 lines
913 B
HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="https://fonts.googleapis.com/css?family=Quicksand:400,500,700" rel="stylesheet">
<title>{{ .Title }} | Pion</title>
<style>
body {
font-family: "Quicksand", sans-serif;
font-weight: 400;
margin: 4em 10%;
}
</style>
<link rel="stylesheet" type="text/css" href="demo.css">
</head>
<body>
<h1>{{ .Title }}</h1>
<p><a href="/">< Home</a></p>
<div>
{{ template "demo.html" }}
</div>
</body>
{{ if .JS }}
<script src="demo.js"></script>
{{ else }}
<script src="/wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("demo.wasm"), go.importObject).then((result) => {
go.run(result.instance);
});
</script>
{{ end }}
</html>