mirror of
				https://github.com/pion/webrtc.git
				synced 2025-10-31 02:36:46 +08:00 
			
		
		
		
	 911013755a
			
		
	
	911013755a
	
	
	
		
			
			The examples server now detects 'demo.wasm' files in the jsfiddles. Examples layout updated to match Pion style. Resolves #491
		
			
				
	
	
		
			35 lines
		
	
	
		
			823 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			823 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">
 | |
| 		{{ 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 }}
 | |
| 	</head>
 | |
| 	<body>
 | |
| 		<h1>{{ .Title }}</h1>
 | |
| 		<p><a href="/">< Home</a></p> 
 | |
| 
 | |
| 		<div>
 | |
| 		{{ template "demo.html" }}
 | |
| 		</div>
 | |
| 	</body>
 | |
| </html>
 |