@@ -768,7 +768,7 @@ function FormCtrl($scope) {
768
768
" title" : " Eligible for awesome things"
769
769
},
770
770
" code" : {
771
- " type" : " string"
771
+ " type" : " string" ,
772
772
" title" : " The Code"
773
773
}
774
774
}
@@ -811,7 +811,7 @@ function FormCtrl($scope) {
811
811
" title" : " Eligible for awesome things"
812
812
},
813
813
" code" : {
814
- " type" : " string"
814
+ " type" : " string" ,
815
815
" title" : " The Code"
816
816
}
817
817
}
@@ -938,7 +938,7 @@ element to the select.
938
938
titleMap: [
939
939
{ value: " yes" , name: " Yes I do" , group: " Boolean" },
940
940
{ 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" }
942
942
]
943
943
}
944
944
` ` `
@@ -952,7 +952,7 @@ element to the select.
952
952
{
953
953
type: " actions" ,
954
954
items: [
955
- { type: ' submit' , title: ' Ok' }
955
+ { type: ' submit' , title: ' Ok' },
956
956
{ type: ' button' , title: ' Cancel' , onClick: " cancel()" }
957
957
]
958
958
}
@@ -964,7 +964,7 @@ We can change this with ```style``` attribute:
964
964
{
965
965
type: " actions" ,
966
966
items: [
967
- { type: ' submit' , style: ' btn-success' , title: ' Ok' }
967
+ { type: ' submit' , style: ' btn-success' , title: ' Ok' },
968
968
{ type: ' button' , style: ' btn-info' , title: ' Cancel' , onClick: " cancel()" }
969
969
]
970
970
}
@@ -978,7 +978,7 @@ the ```sf-schema``` directive.
978
978
979
979
` ` ` javascript
980
980
[
981
- { type: ' submit' , title: ' Ok' , onClick : function (){ ... } }
981
+ { type: ' submit' , title: ' Ok' , onClick : function (){ ... } },
982
982
{ type: ' button' , title: ' Cancel' , onClick: " cancel()" }
983
983
[
984
984
` ` `
@@ -987,7 +987,7 @@ The submit and other buttons have btn-default as default.
987
987
We can change this with ` ` ` style` ` ` attribute:
988
988
` ` ` javascript
989
989
[
990
- { type: ' submit' , style: ' btn-warning' , title: ' Ok' , onClick : function (){ ... } }
990
+ { type: ' submit' , style: ' btn-warning' , title: ' Ok' , onClick : function (){ ... } },
991
991
{ type: ' button' , style: ' btn-danger' , title: ' Cancel' , onClick: " cancel()" }
992
992
[
993
993
` ` `
@@ -1233,7 +1233,7 @@ could be changed using attribute `add`, see example below.
1233
1233
If you like to have drag and drop reordering of arrays you also need
1234
1234
[ui-sortable](https://github.com/angular-ui/ui-sortable) and its dependencies
1235
1235
[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
1237
1237
by including a ` sortOptions` key on the form object. Check the *ui-sortable* documentation
1238
1238
for a complete list of available options. You can safely ignore these if you don't need the reordering.
1239
1239
@@ -1593,7 +1593,7 @@ function FormCtrl($scope) {
1593
1593
" title" : " Eligible for awesome things"
1594
1594
},
1595
1595
" code" : {
1596
- " type" : " string"
1596
+ " type" : " string" ,
1597
1597
" title" : " The Code"
1598
1598
}
1599
1599
}
@@ -1639,7 +1639,7 @@ function FormCtrl($scope) {
1639
1639
" title" : " Eligible for awesome things"
1640
1640
},
1641
1641
" code" : {
1642
- " type" : " string"
1642
+ " type" : " string" ,
1643
1643
" title" : " The Code"
1644
1644
}
1645
1645
}
0 commit comments