54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ooui Wasm</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
</head>
|
|
<body>
|
|
<div id="ooui-body" class="container-fluid">
|
|
<p id="loading"><i class="fa fa-refresh fa-spin" style="font-size:14px;margin-right:0.5em;"></i> Loading...</p>
|
|
<textarea rows="10" cols="100" id="output" hidden="true"></textarea>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="ooui.js"></script>
|
|
<script type='text/javascript'>
|
|
var mainAsmName = "Ooui.Sample";
|
|
var assemblies = [
|
|
"mscorlib.dll",
|
|
"Microsoft.CSharp.dll",
|
|
"Newtonsoft.Json.dll",
|
|
"System.dll",
|
|
"System.Collections.dll",
|
|
"System.ComponentModel.TypeConverter.dll",
|
|
"System.Core.dll",
|
|
"System.Diagnostics.Debug.dll",
|
|
"System.Dynamic.Runtime.dll",
|
|
"System.Globalization.dll",
|
|
"System.IO.dll",
|
|
"System.Linq.dll",
|
|
"System.Linq.Expressions.dll",
|
|
"System.ObjectModel.dll",
|
|
"System.Text.RegularExpressions.dll",
|
|
"System.Text.Encoding.dll",
|
|
"System.Text.Encoding.Extensions.dll",
|
|
"System.Threading.dll",
|
|
"System.Threading.Tasks.dll",
|
|
"System.Reflection.dll",
|
|
"System.Reflection.Extensions.dll",
|
|
"System.Runtime.dll",
|
|
"System.Runtime.Extensions.dll",
|
|
"System.Runtime.Serialization.Primitives.dll",
|
|
"System.Xml.dll",
|
|
"System.Xml.ReaderWriter.dll",
|
|
"System.Xml.XDocument.dll",
|
|
"Ooui.dll",
|
|
mainAsmName + ".dll"
|
|
];
|
|
oouiWasm (mainAsmName, "", "Program", "Main", assemblies);
|
|
</script>
|
|
<script async type="text/javascript" src="mono.js"></script>
|
|
</body>
|
|
</html>
|