-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.html
More file actions
42 lines (37 loc) · 1.2 KB
/
copy.html
File metadata and controls
42 lines (37 loc) · 1.2 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
<!doctype html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>Angular.copy</title>
<link rel="stylesheet" href="css/foundation.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body ng-app="app" ng-controller="AppCtrl as app">
<form>
<input type="text" ng-model="app.selectedContact.firstName" />
<button ng-click="app.saveContact()">Save</button>
</form>
<div class="div" style="margin-top: 40px;"></div>
<table class="table table-striped">
<thead>
<tr>
<td>First</td>
<td>Last</td>
<td>Phone</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="contact in app.contacts" ng-click="app.selectedContact(contact)">
<td>{{contact.firstName}}</td>
<td>{{contact.lastName}}</td>
<td>{{contact.phone}}</td>
</tr>
</tbody>
</table>
<!-- JAVASCRIPT -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
<script src="js/angular-animate.min.js"></script>
<script src="js/copy.js"></script>
<!-- END JAVASCRIPT -->
</body>
</html>