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

Commit 4f4ff5f

Browse files
PatrickJSNarretz
authored andcommitted
fix(NgModelController): typo $rawModelValue -> $$rawModelValue
1 parent e3764e3 commit 4f4ff5f

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
@@ -1721,7 +1721,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
17211721
function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout, $rootScope, $q, $interpolate) {
17221722
this.$viewValue = Number.NaN;
17231723
this.$modelValue = Number.NaN;
1724-
this.$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity.
1724+
this.$$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity.
17251725
this.$validators = {};
17261726
this.$asyncValidators = {};
17271727
this.$parsers = [];

0 commit comments

Comments
 (0)