Skip to content

Commit 7bec853

Browse files
committed
Migrate fixes from PR #592 & #662 to webpack branch
1 parent 62782cd commit 7bec853

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/index.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ function FormCtrl($scope) {
768768
"title": "Eligible for awesome things"
769769
},
770770
"code": {
771-
"type":"string"
771+
"type":"string",
772772
"title": "The Code"
773773
}
774774
}
@@ -811,7 +811,7 @@ function FormCtrl($scope) {
811811
"title": "Eligible for awesome things"
812812
},
813813
"code": {
814-
"type":"string"
814+
"type":"string",
815815
"title": "The Code"
816816
}
817817
}
@@ -938,7 +938,7 @@ element to the select.
938938
titleMap: [
939939
{ value: "yes", name: "Yes I do", group: "Boolean" },
940940
{ value: "no", name: "Hell no" , group: "Boolean" },
941-
{ value: "no", name: "File Not Found", group: "Other" },
941+
{ value: "no", name: "File Not Found", group: "Other" }
942942
]
943943
}
944944
```
@@ -952,7 +952,7 @@ element to the select.
952952
{
953953
type: "actions",
954954
items: [
955-
{ type: 'submit', title: 'Ok' }
955+
{ type: 'submit', title: 'Ok' },
956956
{ type: 'button', title: 'Cancel', onClick: "cancel()" }
957957
]
958958
}
@@ -964,7 +964,7 @@ We can change this with ```style``` attribute:
964964
{
965965
type: "actions",
966966
items: [
967-
{ type: 'submit', style: 'btn-success', title: 'Ok' }
967+
{ type: 'submit', style: 'btn-success', title: 'Ok' },
968968
{ type: 'button', style: 'btn-info', title: 'Cancel', onClick: "cancel()" }
969969
]
970970
}
@@ -978,7 +978,7 @@ the ```sf-schema``` directive.
978978
979979
```javascript
980980
[
981-
{ type: 'submit', title: 'Ok', onClick: function(){ ... } }
981+
{ type: 'submit', title: 'Ok', onClick: function(){ ... } },
982982
{ type: 'button', title: 'Cancel', onClick: "cancel()" }
983983
[
984984
```
@@ -987,7 +987,7 @@ The submit and other buttons have btn-default as default.
987987
We can change this with ```style``` attribute:
988988
```javascript
989989
[
990-
{ type: 'submit', style: 'btn-warning', title: 'Ok', onClick: function(){ ... } }
990+
{ type: 'submit', style: 'btn-warning', title: 'Ok', onClick: function(){ ... } },
991991
{ type: 'button', style: 'btn-danger', title: 'Cancel', onClick: "cancel()" }
992992
[
993993
```
@@ -1233,7 +1233,7 @@ could be changed using attribute `add`, see example below.
12331233
If you like to have drag and drop reordering of arrays you also need
12341234
[ui-sortable](https://github.com/angular-ui/ui-sortable) and its dependencies
12351235
[jQueryUI](http://jqueryui.com/), see *ui-sortable* documentation for details of
1236-
what parts of jQueryUI that is needed. You can also pass options to the *ui-sortable* directive
1236+
what parts of jQueryUI that is needed. You can also pass options to the *ui-sortable* directive
12371237
by including a `sortOptions` key on the form object. Check the *ui-sortable* documentation
12381238
for a complete list of available options. You can safely ignore these if you don't need the reordering.
12391239
@@ -1593,7 +1593,7 @@ function FormCtrl($scope) {
15931593
"title": "Eligible for awesome things"
15941594
},
15951595
"code": {
1596-
"type":"string"
1596+
"type":"string",
15971597
"title": "The Code"
15981598
}
15991599
}
@@ -1639,7 +1639,7 @@ function FormCtrl($scope) {
16391639
"title": "Eligible for awesome things"
16401640
},
16411641
"code": {
1642-
"type":"string"
1642+
"type":"string",
16431643
"title": "The Code"
16441644
}
16451645
}

0 commit comments

Comments
 (0)