diff --git a/src/ng/parse.js b/src/ng/parse.js index 08392c7b19b4..d8bdfe14c2a1 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1218,7 +1218,7 @@ function $ParseProvider() { var result = interceptorFn(value, scope, locals); // we only return the interceptor's result if the // initial value is defined (for bind-once) - return isDefined(value) ? result : value; + return isDefined(value) || interceptorFn.$stateful ? result : value; }; // Propagate $$watchDelegates other then inputsWatchDelegate diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index fefe65e31a97..15c42f73ddde 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -551,6 +551,9 @@ function $RootScopeProvider(){ newValue = _value; var newLength, key, bothNaN, newItem, oldItem; + // If the new value is undefined, then return undefined as the watch may be a one-time watch + if (isUndefined(newValue)) return; + if (!isObject(newValue)) { // if primitive if (oldValue !== newValue) { oldValue = newValue; diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index d2ed91ef0422..2586dc019fa9 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3354,6 +3354,31 @@ describe('$compile', function() { }); }); + it('should continue with a digets cycle when there is a two-way binding from the child to the parent', function() { + module(function() { + directive('hello', function() { + return { + restrict: 'E', + scope: { greeting: '=' }, + template: '', + link: function(scope) { + scope.setGreeting = function() { scope.greeting = 'Hello!'; }; + } + }; + }); + }); + + inject(function($rootScope) { + compile('
{{greeting}}
' + + '