-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
45 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html ng-app="app">
<head>
<title>ui-multiselect - a token field, AKA inline multiselect with typeahead, as an AngularJS directive.</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="ui-multiselect.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-47116686-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-47116686-1');
</script>
</head>
<body ng-controller="MainCtrl">
<div class="container-fluid">
<div class="centered">
<div ui-multiselect
data='data'
output='output'
width=400
placeholder='Multi-select countries...'
limit-filter=10></div>
</div>
<p class="byline">Made with ❤️ by <a href="https://shan.io">Ray Shan</a></p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
<!--not using bower due to problems with managing unstable releases-->
<!--https://github.com/angular/bower-angular/issues/9-->
<script src="components/angular-ui-utils/modules/event/event.js"></script>
<script src="index.js"></script>
<script src="ui-multiselect.js"></script>
</body>
</html>