@@ -1080,8 +1080,11 @@ function $ParseProvider() {
1080
1080
return list ;
1081
1081
}
1082
1082
1083
- function expressionInputDirtyCheck ( newValue , oldValue ) {
1084
- if ( newValue == null || oldValue == null ) return newValue === oldValue ; // null/undefined
1083
+ function expressionInputDirtyCheck ( newValue , oldValueOfValue ) {
1084
+
1085
+ if ( newValue == null || oldValueOfValue == null ) { // null/undefined
1086
+ return newValue === oldValueOfValue ;
1087
+ }
1085
1088
1086
1089
if ( typeof newValue === 'object' ) {
1087
1090
@@ -1095,13 +1098,11 @@ function $ParseProvider() {
1095
1098
return false ;
1096
1099
}
1097
1100
1098
- oldValue = oldValue . valueOf ( ) ;
1099
-
1100
1101
// fall-through to the primitive equality check
1101
1102
}
1102
1103
1103
1104
//Primitive or NaN
1104
- return newValue === oldValue || ( newValue !== newValue && oldValue !== oldValue ) ;
1105
+ return newValue === oldValueOfValue || ( newValue !== newValue && oldValueOfValue !== oldValueOfValue ) ;
1105
1106
}
1106
1107
1107
1108
function inputsWatchDelegate ( scope , listener , objectEquality , parsedExpression ) {
@@ -1117,24 +1118,24 @@ function $ParseProvider() {
1117
1118
var newInputValue = inputExpressions ( scope ) ;
1118
1119
if ( ! expressionInputDirtyCheck ( newInputValue , oldInputValue ) ) {
1119
1120
lastResult = parsedExpression ( scope ) ;
1120
- oldInputValue = newInputValue ;
1121
+ oldInputValue = newInputValue . valueOf ( ) ;
1121
1122
}
1122
1123
return lastResult ;
1123
1124
} , listener , objectEquality ) ;
1124
1125
}
1125
1126
1126
- var oldInputValues = [ ] ;
1127
+ var oldInputValueOfValues = [ ] ;
1127
1128
for ( var i = 0 , ii = inputExpressions . length ; i < ii ; i ++ ) {
1128
- oldInputValues [ i ] = expressionInputDirtyCheck ; // init to something unique so that equals check fails
1129
+ oldInputValueOfValues [ i ] = expressionInputDirtyCheck ; // init to something unique so that equals check fails
1129
1130
}
1130
1131
1131
1132
return scope . $watch ( function expressionInputsWatch ( scope ) {
1132
1133
var changed = false ;
1133
1134
1134
1135
for ( var i = 0 , ii = inputExpressions . length ; i < ii ; i ++ ) {
1135
1136
var newInputValue = inputExpressions [ i ] ( scope ) ;
1136
- if ( changed || ( changed = ! expressionInputDirtyCheck ( newInputValue , oldInputValues [ i ] ) ) ) {
1137
- oldInputValues [ i ] = newInputValue ;
1137
+ if ( changed || ( changed = ! expressionInputDirtyCheck ( newInputValue , oldInputValueOfValues [ i ] ) ) ) {
1138
+ oldInputValueOfValues [ i ] = newInputValue && newInputValue . valueOf ( ) ;
1138
1139
}
1139
1140
}
1140
1141
0 commit comments