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

Commit

Permalink
fix(NgModelController): typo $rawModelValue -> $$rawModelValue
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickJS authored and Narretz committed Nov 18, 2014
1 parent e3764e3 commit 4f4ff5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ng/directive/input.js
Expand Up @@ -1721,7 +1721,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
function($scope, $exceptionHandler, $attr, $element, $parse, $animate, $timeout, $rootScope, $q, $interpolate) {
this.$viewValue = Number.NaN;
this.$modelValue = Number.NaN;
this.$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity.
this.$$rawModelValue = undefined; // stores the parsed modelValue / model set from scope regardless of validity.
this.$validators = {};
this.$asyncValidators = {};
this.$parsers = [];
Expand Down

0 comments on commit 4f4ff5f

Please sign in to comment.