-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (39 loc) · 2.14 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
46
47
48
49
<!DOCTYPE html>
<html lang='en' ng-app='app'>
<head>
<meta charset='utf-8'>
<meta content='IE=edge' http-equiv='X-UA-Compatible'>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<link href="bower_components/bootstrap/dist/css/bootstrap.css" media="all" rel="stylesheet" />
<link rel="stylesheet" href="bower_components/bootstrap-tokenfield/dist/css/bootstrap-tokenfield.css" />
<link rel="stylesheet" href="bower_components/jquery-ui/themes/ui-lightness/jquery-ui.css" />
<title>Angular schema form tokenfield example</title>
</head>
<body ng-controller='appController as vm' class="container">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/jquery-ui/jquery-ui.min.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<!-- !-->
<script src="bower_components/objectpath/lib/ObjectPath.js"></script>
<script src="bower_components/tv4/tv4.js"></script>
<script src="bower_components/angular-schema-form/dist/schema-form.js"></script>
<script src="bower_components/angular-schema-form-bootstrap/bootstrap-decorator.js"></script>
<script src="bower_components/bootstrap-tokenfield/dist/bootstrap-tokenfield.js"></script>
<script src="dist/angular-schema-form-tokenfield.js"></script>
<script src="app.js"></script>
<h1>Example</h1>
<p>This is an example of the features of <a href="https://github.com/indodutch/angular-schema-form-tokenfield">Angular
schema form tokenfield</a></p>
<p>Please <a href="https://github.com/indodutch/angular-schema-form-tokenfield/issues">report any issues or bugs
you may find.</a></p>
<h2>The Form:</h2>
<form name="tokenfieldForm" sf-schema="schema" sf-form="form" sf-model="model" ng-submit="submit(tokenfieldForm)">
</form>
<h3>Known issues:</h3>
<ul>
<li>min-length option calculates min-length+1 (<a href="https://github.com/sliptree/bootstrap-tokenfield/issues/289">github issue</a>)
</ul>
</body>
</html>