We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ab686 commit 219c4b0Copy full SHA for 219c4b0
2 files changed
src/bootstrap-example.html
@@ -111,7 +111,13 @@ <h3>Model</h3>
111
112
$scope.form = [
113
'*',
114
- { type: 'submit', title: 'Do It!'}
+ {
115
+ type: 'actions',
116
+ items: [
117
+ { type: 'submit', title: 'Do It!'},
118
+ { type: 'button', title: 'Noooooooooooo'}
119
+ ]
120
+ }
121
];
122
123
$scope.decorator = 'bootstrap-decorator';
src/directives/decorators/bootstrap/default.html
@@ -9,5 +9,5 @@
9
schema-validate="form.schema">
10
11
<span class="help-block" ng-show="form.description && !hasError()">{{form.description}} </span>
12
- <span class="help-block" ng-show="hasError()">{{schemaError}} {{ngModel.$error}}</span>
+ <span class="help-block" ng-show="hasError()">{{schemaError}}</span>
13
</div>
0 commit comments