-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 2.6 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
<!DOCTYPE html>
<html ng-app="carApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--jQuery-->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" crossorigin="anonymous"></script>
<!--Bootstrap-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link data-require="[email protected]" data-semver="3.3.6" rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css"/>
<!--Angular-->
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-animate.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-aria.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-messages.min.js"></script>
<!--Material-->
<script src="http://ajax.googleapis.com/ajax/libs/angular_material/1.1.0/angular-material.min.js"></script>
<!--Application Code-->
<script src="script.js"></script>
<script src="views/tmbMessages.js"></script>
<script src="views/tmbDashboard.js"></script>
<script src="views/tmbDashboardButton.js"></script>
<script src="views/tmbDropdown.js"></script>
<script src="controllers/car.js"></script>
<script src="models/settingsService.js"></script>
<script src="models/carStateMachineProvider.js"></script>
<link rel="stylesheet" href="styles.css"/>
</head>
<body ng-controller="carController">
<tmb-dropdown
label="Interior"
current-option="selectedUistyle"
on-change="updateUiStyle(id, name)"
options="possibleUistyles"
></tmb-dropdown>
<br/>
<tmb-dashboard>
<tmb-dashboard-button cmd-val="Insert Keys" exec-cmd="acceptCommand('startEngine')"></tmb-dashboard-button>
<tmb-dashboard-button cmd-val="Remove Keys" exec-cmd="acceptCommand('turnOffEngine')"></tmb-dashboard-button>
<tmb-dashboard-button cmd-val="Accelerate" exec-cmd="acceptCommand('pushForward')"></tmb-dashboard-button>
<tmb-dashboard-button cmd-val="Decelerate" exec-cmd="acceptCommand('pullBack')"></tmb-dashboard-button>
</tmb-dashboard>
<tmb-messages class="scrolling" msg-array="messageArray"></tmb-messages>
</body>
</html>