Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8ce61bf

Browse files
ephigabaytbosch
authored andcommitted
docs(ngModelController): update setValidity
Needs to be `$error[validationErrorKey]!=isValid` and not `$error[validationErrorKey]=isValid`. See https://github.com/angular/angular.js/blob/master/src/ng/directive/input.js#L1627 Closes #7934
1 parent 9d452bc commit 8ce61bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/directive/input.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
10991099
* This method should be called by validators - i.e. the parser or formatter functions.
11001100
*
11011101
* @param {string} validationErrorKey Name of the validator. the `validationErrorKey` will assign
1102-
* to `$error[validationErrorKey]=isValid` so that it is available for data-binding.
1102+
* to `$error[validationErrorKey]=!isValid` so that it is available for data-binding.
11031103
* The `validationErrorKey` should be in camelCase and will get converted into dash-case
11041104
* for class name. Example: `myError` will result in `ng-valid-my-error` and `ng-invalid-my-error`
11051105
* class and can be bound to as `{{someForm.someControl.$error.myError}}` .

0 commit comments

Comments
 (0)