-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.html
More file actions
30 lines (30 loc) · 820 Bytes
/
Copy pathfinal.html
File metadata and controls
30 lines (30 loc) · 820 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Final Project Planner</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="shortcut icon" href="favicon.ico" />
<style>
body { margin: 0; padding: 0; }
#planner {
position: absolute;
top: 0; left: 0;
bottom: 0; right: 0;
overflow: hidden;
}
</style>
<script type="module">
import init from "./function-planner.js";
window.addEventListener('DOMContentLoaded', () => {
init('planner', "final", {
allowedTypes: ['int', 'float', 'str', 'bool', 'list', 'tuple', 'dict', 'set', 'custom'],
canClaimFuncs: true,
});
});
</script>
</head>
<body>
<div id="planner"></div>
</body>
</html>