feat(forms): added support for textarea

This commit is contained in:
vsavkin
2015-03-19 09:51:30 -07:00
parent 81312e4b3e
commit f42e6337b7
3 changed files with 23 additions and 2 deletions

View File

@ -77,6 +77,8 @@ export class ControlDirective {
constructor(@Ancestor() groupDirective:ControlGroupDirective, el:NgElement) {
this._groupDirective = groupDirective;
this._el = el;
this.controlName = null;
this.type = null;
this.validator = validators.nullValidator;
}