-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManualTest.html
More file actions
33 lines (27 loc) · 776 Bytes
/
Copy pathManualTest.html
File metadata and controls
33 lines (27 loc) · 776 Bytes
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
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Manual LolTinyLoader Test</title>
<!-- ReSharper disable Html.PathError -->
<script src="../LolTinyLoader/bin/LolTinyLoader.js"></script>
<script src="bin/ModulesSample.js"></script>
<!-- ReSharper restore Html.PathError -->
<script>
function traceMessage(message) {
document.getElementById("trace").innerHTML += message + "\n";
}
window.addEventListener(
"load",
function () {
traceMessage("Before require(\"Main\") ...");
require("Main");
traceMessage("After require(\"Main\") ...");
});
</script>
</head>
<body>
<pre id="trace">
</pre>
</body>
</html>