forked from chengz/schema-form-strapselect
-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
44 lines (34 loc) · 1.97 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
<!DOCTYPE html>
<html lang='en' ng-app='testApp'>
<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 href="bower_components/angular-ui-select/dist/select.css" rel="stylesheet" />
<link href="app.css" media="all" rel="stylesheet" />
<script src="bower_components/angular/angular.js"></script>
<!-- !-->
<script src='bower_components/angular-ui-select/dist/select.js'></script>
<script src="bower_components/angular-translate/angular-translate.min.js"></script>
<script src='bower_components/angular-strap/dist/angular-strap.js'></script>
<script src='bower_components/angular-strap/dist/angular-strap.tpl.min.js'></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/tv4/tv4.js"></script>
<script src="bower_components/objectpath/lib/ObjectPath.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="ui-sortable.js"></script>
<script src="angular-schema-form-dynamic-select.js"></script>
<script src="app.js"></script>
<title>Angular schema form dynamic select example</title>
</head>
<body ng-controller='appController' class="container">
<h1>Example</h1>
<p>This is an example of the features of <a href="https://github.com/OptimalBPM/angular-schema-form-dynamic-select">Angular
schema form dynamic select</a></p>
<p>Please <a href="https://github.com/OptimalBPM/angular-schema-form-dynamic-select/issues">report any issues or bugs
you may find.</a></p>
<form name="selectForm" sf-schema="schema" sf-form="form" sf-model="model" ng-submit="submitted(selectForm)"></form>
</body>
</html>