mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-13 17:02:23 +08:00
fix(NgModelController): typo $rawModelValue -> $$rawModelValue
This commit is contained in:
@@ -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 = [];
|
||||
|
||||
Reference in New Issue
Block a user