-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular-controller.html
More file actions
22 lines (22 loc) · 873 Bytes
/
Copy pathangular-controller.html
File metadata and controls
22 lines (22 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html ng-app>
<head>
<title>JavaScript & jQuery - Chapter 9: APIs - Angular with a view model / controller</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
<script src="js/angular-controller.js"></script>
<link rel="stylesheet" href="css/c09.css">
</head>
<body>
<header><h1>THE MAKER BUS</h1></header>
<h2>Buy tickets</h2>
<div class="third"><img src="img/toys1.jpg" alt="Circuit boards" /></div>
<div class="two-thirds">
<table ng-controller="BasketCtrl">
<tr><td>Item:</td><td>{{ description }}</td></tr>
<tr><td>Cost:</td><td>${{ cost }}</td></tr>
<tr><td>Qty:</td><td><input type="number" ng-model="qty"></td></tr>
<tr><td>Subtotal:</td><td>{{qty * cost | currency}}</td></tr>
</table>
</div>
</body>
</html>