From 912c4fed05b9b63c02ab40f8f3605564334ab7d1 Mon Sep 17 00:00:00 2001 From: Niall Smart Date: Wed, 7 Aug 2013 14:55:33 -0700 Subject: [PATCH] docs(ngModel): $setViewValue does not check validity before updating model. Removes an incorrect assertion in the docs for $setViewValue. It actually updates the model regardless of the control validity. --- src/ng/directive/input.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index f5d30a3e6c36..d66e0e7682cb 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -1042,8 +1042,8 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$ * For example {@link ng.directive:input input} or * {@link ng.directive:select select} directives call it. * - * It internally calls all `parsers` and if resulted value is valid, updates the model and - * calls all registered change listeners. + * It internally calls all `parsers`, updates the model and calls + * all registered change listeners. * * @param {string} value Value from the view. */