-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 1.19 KB
/
index.html
File metadata and controls
36 lines (28 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Search Component</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style/styles.css">
</head>
<body ng-app="search">
<div class="jumbotron">
<div class="container pad-0">
<div class="col-xs-12 col-xs-offset-0">
<div ng-controller="ctrl as ctrl">
<search-input my-client="ctrl.myClients" on-search="ctrl.onSearch(searchKey)"></search-input>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.min.js"></script>
<script src="app/app.js"></script>
<script src="app/component/search.component.js"></script>
<script src="app/filter/data.filter.js"></script>
<script src="app/services/search.service.js"></script>
</body>
</html>