feat(forms): added an observable of value changes to Control

This commit is contained in:
vsavkin
2015-03-24 13:45:47 -07:00
parent 9b3b3d325f
commit 19c1773133
3 changed files with 156 additions and 44 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export class Validators {
return isBlank(c.value) || c.value == "" ? {"required": true} : null;
}
static nullValidator(c:modelModule.Control) {
static nullValidator(c:any) {
return null;
}