-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
36 lines (33 loc) · 1.19 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
<!doctype html>
<html ng-app="demo">
<head>
<meta charset="UTF-8">
<title>Demo : Angular Country State Select </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style>
body{
padding: 20px;
}
div{
margin-top: 10px;
}
</style>
</head>
<body ng-controller="DemoController">
<div class="container">
<h1>Demo</h1>
<country-state-select country="myCountryModel" state="myStateModel" country-label="The country : " country-select-label="Select your country" state-label="The state : " ></country-state-select>
<div class="choice">
<div>
Country : {{ myCountryModel }}
</div>
<div>
State : {{ myStateModel }}
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script src="dist/angular-country-state.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>