From f38010d3a2f457a53798212ef72418637dabe189 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 20 Oct 2011 15:37:37 -0700 Subject: [PATCH] fix(compiler): revert 8611ebe6 - calling \$digest after linking Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler and linker is used from within a widget, in which case, we call $digest unnecessary since it will be called by the $apply which called the directive/widget in the first place. There are only two places when the extra $digest call can be useful - when manually bootstrapping the app or in tests. However even in tests this behavior can result in unwanted results (especially when ng:controller is involved). So it is better to leave it for the developer to call $digest when it is really needed. --- .../dev_guide.bootstrap.manual_bootstrap.ngdoc | 2 +- src/Compiler.js | 10 +++++++++- test/CompilerSpec.js | 4 ---- test/markupSpec.js | 14 +++----------- 4 files changed, 13 insertions(+), 17 deletions(-) diff --git a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc index c0f2fe1cf28d..1adbb0d23cc5 100644 --- a/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc +++ b/docs/content/guide/dev_guide.bootstrap.manual_bootstrap.ngdoc @@ -17,7 +17,7 @@ explicitly. diff --git a/src/Compiler.js b/src/Compiler.js index 1b079fc2e8e3..12736db7adc1 100644 --- a/src/Compiler.js +++ b/src/Compiler.js @@ -119,6 +119,15 @@ Template.prototype = { * the same scope as the one passed into the template function, or if none were provided it's the * newly create scope. * + * It is important to understand that the returned scope is "linked" to the view DOM, but no linking + * (instance) functions registered by {@link angular.directive directives} or + * {@link angular.widget widgets} found in the template have been executed yet. This means that the + * view is likely empty and doesn't contain any values that result from evaluation on the scope. To + * bring the view to life, the scope needs to run through a $digest phase which typically is done by + * Angular automatically, except for the case when an application is being + * {@link guide/dev_guide.bootstrap.manual_bootstrap} manually bootstrapped, in which case the + * $digest phase must be invoked by calling {@link angular.scope.$apply}. + * * If you need access to the bound view, there are two ways to do it: * * - If you are not asking the linking function to clone the template, create the DOM element(s) @@ -209,7 +218,6 @@ Compiler.prototype = { scope.$element = element; (cloneConnectFn||noop)(element, scope); template.link(element, scope); - if (!scope.$$phase) scope.$digest(); return scope; }; }, diff --git a/test/CompilerSpec.js b/test/CompilerSpec.js index 2cb7d19ddba3..860cea4a0159 100644 --- a/test/CompilerSpec.js +++ b/test/CompilerSpec.js @@ -110,7 +110,6 @@ describe('compiler', function() { expect(sortedHtml(scope.$element)). toEqual('
' + 'before<#comment>' + - 'x' + 'after' + '
'); scope.value = 1; @@ -119,7 +118,6 @@ describe('compiler', function() { toEqual('
' + 'before<#comment>' + 'x' + - 'x' + 'after' + '
'); scope.value = 2; @@ -129,7 +127,6 @@ describe('compiler', function() { 'before<#comment>' + 'x' + 'x' + - 'x' + 'after' + ''); scope.value = 3; @@ -140,7 +137,6 @@ describe('compiler', function() { 'x' + 'x' + 'x' + - 'x' + 'after' + ''); }); diff --git a/test/markupSpec.js b/test/markupSpec.js index a05ca44f49ce..41255b4a1f75 100644 --- a/test/markupSpec.js +++ b/test/markupSpec.js @@ -167,20 +167,12 @@ describe("markups", function() { }); it('should bind Text with no Bindings', function() { - forEach(['checked', 'disabled', 'multiple', 'readonly', 'selected'], function(name) { + forEach(['checked', 'disabled', 'multiple', 'readonly', 'selected', 'src', 'href'], + function(name) { compile('
'); - expect(element.attr('ng:bind-attr')).toBe('{"' + name +'":"some"}'); - expect(element.attr(name)).toBe(name); + expect(sortedHtml(element)).toEqual('
'); dealoc(element); }); - - compile('
'); - expect(sortedHtml(element)).toEqual('
'); - dealoc(element); - - compile('
'); - expect(sortedHtml(element)).toEqual('
'); - dealoc(element); }); it('should Parse Text With No Bindings', function() {