-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.html
31 lines (28 loc) · 943 Bytes
/
default.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var jsilConfig = {
manifests: ["./OPUS/HC.OPUS.HTML5.dll"],
scriptRoot: "./OPUS/",
libraryRoot: "./Libraries/",
showProgressBar: true,
showFullscreenButton: false,
};
</script>
<script src="./Libraries/JSIL.js" type="text/javascript"></script>
</head>
<body onload="onLoad()">
<div id="jsilRegion">
<div id="log" style="font-family: Consolas, Courier New, monospace"></div>
<div id="loadingProgress"></div>
<script type="text/javascript">
function runMain() {
document.getElementById("log").innerHTML = "";
var asm = JSIL.GetAssembly("HC.OPUS.HTML5, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null");
asm.HC.OPUS.HTML5.JsOpusApp.Main();
}
</script>
</div>
</body>
</html>