-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (50 loc) · 1.55 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 lang="en">
<head>
<title>Shopping List Check Off</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/bootstrap.min.css">
<style>
.emptyMessage {
font-weight: bold;
color: red;
font-size: 1.2em;
}
li {
margin-bottom: 7px;
font-size: 1.2em;
}
li > button {
margin-left: 6px;
}
button > span {
color: green;
}
</style>
</head>
<script src="angular.min.js"></script>
<script src="app.js"></script>
<body ng-app = "ShoppingListCheckOff">
<div class="container">
<h1>Shopping List Check Off</h1>
<div class="row">
<!-- To Buy List -->
<div class="col-md-6" ng-controller='ToBuyController as list1'>
<h2>To Buy:</h2>
<ul>
<li ng-repeat="item in list1.shoppingList"> Buy {{item.quantity}} of {{item.name}}<button ng-click="list1.removeItem($index);" class="btn btn-default"><span class="glyphicon glyphicon-ok"></span> Bought</button></li>
</ul>
<div ng-show="list1.shoppingList.length === 0" class="emptyMessage">Everything is bought!</div>
</div>
<!-- Already Bought List -->
<div class="col-md-6" ng-controller='AlreadyBoughtController as list2'>
<h2>Already Bought:</h2>
<ul>
<li ng-repeat="item in list2.bought">Bought {{item.quantity}} of {{item.name}}</li>
</ul>
<div ng-hide="list2.bought.length > 0" class="emptyMessage">Nothing bought yet.</div>
</div>
</div>
</div>
</body>
</html>