@@ -956,13 +956,7 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) {
956
956
// value, so it may be necessary to revalidate (by calling $setViewValue again) even if the
957
957
// control's value is the same empty value twice in a row.
958
958
if ( ctrl . $viewValue !== value || ( value === '' && ctrl . $$hasNativeValidators ) ) {
959
- if ( scope . $root . $$phase ) {
960
- ctrl . $setViewValue ( value , event ) ;
961
- } else {
962
- scope . $apply ( function ( ) {
963
- ctrl . $setViewValue ( value , event ) ;
964
- } ) ;
965
- }
959
+ ctrl . $setViewValue ( value , event ) ;
966
960
}
967
961
} ;
968
962
@@ -1173,9 +1167,7 @@ function radioInputType(scope, element, attr, ctrl) {
1173
1167
1174
1168
var listener = function ( ev ) {
1175
1169
if ( element [ 0 ] . checked ) {
1176
- scope . $apply ( function ( ) {
1177
- ctrl . $setViewValue ( attr . value , ev && ev . type ) ;
1178
- } ) ;
1170
+ ctrl . $setViewValue ( attr . value , ev && ev . type ) ;
1179
1171
}
1180
1172
} ;
1181
1173
@@ -1207,9 +1199,7 @@ function checkboxInputType(scope, element, attr, ctrl, $sniffer, $browser, $filt
1207
1199
var falseValue = parseConstantExpr ( $parse , scope , 'ngFalseValue' , attr . ngFalseValue , false ) ;
1208
1200
1209
1201
var listener = function ( ev ) {
1210
- scope . $apply ( function ( ) {
1211
- ctrl . $setViewValue ( element [ 0 ] . checked , ev && ev . type ) ;
1212
- } ) ;
1202
+ ctrl . $setViewValue ( element [ 0 ] . checked , ev && ev . type ) ;
1213
1203
} ;
1214
1204
1215
1205
element . on ( 'click' , listener ) ;
@@ -1588,8 +1578,8 @@ var VALID_CLASS = 'ng-valid',
1588
1578
*
1589
1579
*
1590
1580
*/
1591
- var NgModelController = [ '$scope' , '$exceptionHandler' , '$attrs' , '$element' , '$parse' , '$animate' , '$timeout' ,
1592
- function ( $scope , $exceptionHandler , $attr , $element , $parse , $animate , $timeout ) {
1581
+ var NgModelController = [ '$scope' , '$exceptionHandler' , '$attrs' , '$element' , '$parse' , '$animate' , '$timeout' , '$rootScope' ,
1582
+ function ( $scope , $exceptionHandler , $attr , $element , $parse , $animate , $timeout , $rootScope ) {
1593
1583
this . $viewValue = Number . NaN ;
1594
1584
this . $modelValue = Number . NaN ;
1595
1585
this . $validators = { } ;
@@ -2112,8 +2102,12 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$
2112
2102
pendingDebounce = $timeout ( function ( ) {
2113
2103
ctrl . $commitViewValue ( ) ;
2114
2104
} , debounceDelay ) ;
2115
- } else {
2105
+ } else if ( $rootScope . $$phase ) {
2116
2106
ctrl . $commitViewValue ( ) ;
2107
+ } else {
2108
+ $scope . $apply ( function ( ) {
2109
+ ctrl . $commitViewValue ( ) ;
2110
+ } ) ;
2117
2111
}
2118
2112
} ;
2119
2113
@@ -2330,9 +2324,7 @@ var ngModelDirective = function() {
2330
2324
var modelCtrl = ctrls [ 0 ] ;
2331
2325
if ( modelCtrl . $options && modelCtrl . $options . updateOn ) {
2332
2326
element . on ( modelCtrl . $options . updateOn , function ( ev ) {
2333
- scope . $apply ( function ( ) {
2334
- modelCtrl . $$debounceViewValueCommit ( ev && ev . type ) ;
2335
- } ) ;
2327
+ modelCtrl . $$debounceViewValueCommit ( ev && ev . type ) ;
2336
2328
} ) ;
2337
2329
}
2338
2330
0 commit comments