fix(NgModelController): typo $rawModelValue -> $$rawModelValue

This commit is contained in:
PatrickJS
2014-11-17 15:46:36 -08:00
committed by Martin Staffa
parent e3764e30a3
commit 4f4ff5f31b

View File

@@ -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 = [];