-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewapp2.html
More file actions
58 lines (48 loc) · 1.52 KB
/
newapp2.html
File metadata and controls
58 lines (48 loc) · 1.52 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=1">
<title>Create a new Application</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://cdn.rawgit.com/vanderlee/tristate/master/jquery.tristate.js"></script>
<script src="configuration.js"></script>
<script src="configuration-renderer.js"></script>
<script src="constraint-solver.js"></script>
<script src="feature.js"></script>
<script src="configurator.js"></script>
<script src="logic-solver.js"></script>
<script src="model.js"></script>
<script src="./newapp2.js"></script>
<style>
body {
font-family: Arial;
}
ul {
list-style-type: none;
user-select: none;
}
pre {
white-space: pre-wrap;
word-break: keep-all;
}
input[type=xml] {
margin-left: 8px;
height: 3em;
}
</style>
</head>
<body>
<button id="smartSensor">Configuration of sensors and actuators</button>
<div id="new">
</div>
<div class="configurator"></div>
<div id="stampare"></div>
<pre id="pre1"></pre>
<div><button id="complete">Configuration Complete!</button></div>
</body>
</html>