forked from mike-marcacci/angular-schema-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.48 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
<html>
<head>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<script type="text/javascript" src="bower_components/objectpath/lib/ObjectPath.js"></script>
<script type="text/javascript" src="bower_components/tv4/tv4.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.js"></script>
<script type="text/javascript" src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script type="text/javascript" src="bower_components/angular-ui-sortable/sortable.js"></script>
<script type="text/javascript" src="bower_components/angular-schema-form/dist/schema-form.js"></script>
<script type="text/javascript" src="bower_components/angular-schema-form/dist/bootstrap-decorator.js"></script>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="demo.js"></script>
</head>
<body ng-app="demo">
<div ng-controller="demo">
<sf-builder
sf-builder-options="options"
sf-builder-schema="schema"
sf-builder-form="form"
></sf-builder>
<div style="margin: 100px auto; width: 60%;">
<p>This is to demonstrate that the presense of the builder doesn't influence any other schema-forms (despite modifying the decorators).</p>
<div
sf-model="model"
sf-schema="schema"
sf-form="form"
></div>
</div>
</div>
</body>
</html>