We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9e85c6 commit 1009983Copy full SHA for 1009983
src/ng/parse.js
@@ -1942,9 +1942,8 @@ function $ParseProvider() {
1942
1943
// Propagate $$watchDelegates other then inputsWatchDelegate
1944
useInputs = !parsedExpression.inputs;
1945
- if (parsedExpression.$$watchDelegate &&
1946
- parsedExpression.$$watchDelegate !== inputsWatchDelegate) {
1947
- fn.$$watchDelegate = parsedExpression.$$watchDelegate;
+ if (watchDelegate && watchDelegate !== inputsWatchDelegate) {
+ fn.$$watchDelegate = watchDelegate;
1948
fn.inputs = parsedExpression.inputs;
1949
} else if (!interceptorFn.$stateful) {
1950
// If there is an interceptor, but no watchDelegate then treat the interceptor like
0 commit comments