Built motion from commit 14588770.|2.5.38
[motion2.git] / public / assets / plugins / angular-material-form-builder / src / lib / directives / textarea-item / textarea-view.tpl.html
1 <md-input-container class="md-block">
2   <textarea
3     ng-model="TextareaView.formItem.value"
4     placeholder="{{TextareaView.formItem.config.placeholder}}"
5     ng-required="TextareaView.formItem.config.required"
6   ></textarea>
7   <div ng-messages="TextareaView.form.$error">
8     <div ng-message="required">This field is required</div>
9   </div>
10 </md-input-container>