We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f7c69a commit 6c0606fCopy full SHA for 6c0606f
src/directives/decorators/bootstrap/default.html
@@ -1,7 +1,12 @@
1
<div class="form-group" ng-class="{'has-error': hasError()}">
2
<label ng-show="form.title">{{form.title}}</label>
3
4
- <input type="{{form.type}}" class="form-control" ng-required="form.required" ng-model="$$value$$" schema-validate="form.schema">
+ <input type="{{form.type}}"
5
+ placeholder="{{form.placeholder}}"
6
+ class="form-control"
7
+ ng-required="form.required"
8
+ ng-model="$$value$$"
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>
0 commit comments