-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.04 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.min.js"></script>
<script src="thatGameThing.js"></script>
<script src="pigLatin.js"></script>
<script src="autoRepl.js"></script>
<script type="text/javascript">
const buildDisplays = () => {
const contentElement = document.getElementById("contentArea");
_.each(toRun, (runConfig, index) => {
_.tap(document.createElement("div"), (div) => {
div.id = `area${index}`;
contentElement.appendChild(div);
buildDisplay(div.id, runConfig);
});
});
};
</script>
</head>
<body onload="buildDisplays()">
<div id="contentArea"></div>
</body>
</html>