-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (54 loc) · 1.45 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>My Module | Fluidspace</title>
<script src="http://localhost:1822/js/ModuleDataAPI.js" type="text/javascript"></script>
<script src="http://localhost:1822/js/ModulePropsAPI.js" type="text/javascript"></script>
<script src="http://localhost:1822/js/Bus.js" type="text/javascript"></script>
<script src="http://localhost:1822/js/Module.js" type="text/javascript"></script>
<script id="appConfig" type="application/json">
{
"serverUrl": "http://localhost:1822",
"module": {
"id": "llzD4Kj0m8hw6X69nMvw",
"namespace": "namespace",
"name": "modulename",
"displayName": "My Module",
"dataset_id": "6231fd0324f21-9f41d1"
}
}
</script>
<style>
body {
margin: 0;
padding: 0;
background-color: #333;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.module {
height: 90vh;
width: 90%;
background-color: #fff;
border-radius: 7px;
padding: 1rem;
box-sizing: border-box;
}
.moduleElement {
display: block;
overflow: auto;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<script type="module" src="/src/main.js"></script>
<script src="./testbench.js" type="text/javascript"></script>
</body>
</html>