-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathivf.html
48 lines (38 loc) · 1.93 KB
/
ivf.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<title>Wind101</title>
</head>
<body class="ok_green">
<button id="create">Create file</button>
<a download="data.js" id="downloadlink" style="display: none">Download</a>
<div id="container" class="container-fluid" style="padding-top:10px;padding-bottom:60px;"></div>
<script src="core/vendor/jquery/jquery-2.1.3.min.js"></script>
<script>$.noConflict();</script>
<script src="core/vendor/async/async.js"></script>
<script src="core/vendor/moment/moment-with-locales.min.js"></script>
<script src="core/vendor/moment/moment-timezone-with-data-2010-2020.min.js"></script>
<!-- unit and dependency -->
<script src="core/js/data/unit.js"></script>
<script src="core/js/utils/numbers.js"></script>
<script src="core/js/socket_handler.js"></script>
<script src="core/js/messages.js"></script>
<script src="core/js/bordel.js"></script>
<script src="core/js/data/aggregator.js"></script>
<script src="core/js/data/quantity.js"></script>
<script src="core/js/data/measure.js"></script>
<script src="core/js/data/sensor.js"></script>
<script src="core/js/data/feeder.js"></script>
<script src="core/js/data/object_waiter.js"></script>
<script src="core/js/configurables/configurable.js"></script>
<script src="core/js/configurables/customer.js"></script>
<script src="core/js/configurables/container.js"></script>
<script src="core/js/box/box.js"></script>
<script src="core/js/index.js"></script>
</body>
</html>