Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 77c4a7f

Browse files
danilsomsikovIgorMinar
authored andcommitted
fix($compile): compile replace directives in external template
Passing DOMNode#childNodes to compileNodes when compiling remote template, so that directives with replace:true can be compiled. The previous version used jqLite#contents which returned collection that was not updated during the compilation. Closes #1859
1 parent e281413 commit 77c4a7f

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

src/ng/compile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ function $CompileProvider($provide) {
358358

359359
function compile($compileNodes, transcludeFn, maxPriority) {
360360
if (!($compileNodes instanceof jqLite)) {
361-
// jquery always rewraps, where as we need to preserve the original selector so that we can modify it.
361+
// jquery always rewraps, whereas we need to preserve the original selector so that we can modify it.
362362
$compileNodes = jqLite($compileNodes);
363363
}
364364
// We can not compile top level text elements since text nodes can be merged and we will
@@ -410,7 +410,7 @@ function $CompileProvider($provide) {
410410
* functions return values - the linking functions - are combined into a composite linking
411411
* function, which is the a linking function for the node.
412412
*
413-
* @param {NodeList} nodeList an array of nodes to compile
413+
* @param {NodeList} nodeList an array of nodes or NodeList to compile
414414
* @param {function(angular.Scope[, cloneAttachFn]} transcludeFn A linking function, where the
415415
* scope argument is auto-generated to the new child of the transcluded parent scope.
416416
* @param {DOMElement=} $rootElement If the nodeList is the root of the compilation tree then the
@@ -992,7 +992,7 @@ function $CompileProvider($provide) {
992992

993993
directives.unshift(derivedSyncDirective);
994994
afterTemplateNodeLinkFn = applyDirectivesToNode(directives, compileNode, tAttrs, childTranscludeFn);
995-
afterTemplateChildLinkFn = compileNodes($compileNode.contents(), childTranscludeFn);
995+
afterTemplateChildLinkFn = compileNodes($compileNode[0].childNodes, childTranscludeFn);
996996

997997

998998
while(linkQueue.length) {

test/ng/compileSpec.js

+29
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,10 @@ describe('$compile', function() {
702702
}
703703
}));
704704

705+
directive('replace', valueFn({
706+
replace: true,
707+
template: '<span>Hello, {{name}}!</span>'
708+
}));
705709
}
706710
));
707711

@@ -817,6 +821,31 @@ describe('$compile', function() {
817821
));
818822

819823

824+
it('should compile template when replacing element in another template',
825+
inject(function($compile, $templateCache, $rootScope) {
826+
$templateCache.put('hello.html', '<div replace></div>');
827+
$rootScope.name = 'Elvis';
828+
element = $compile('<div><b class="hello"></b></div>')($rootScope);
829+
830+
$rootScope.$digest();
831+
832+
expect(sortedHtml(element)).
833+
toEqual('<div><b class="hello"><span replace="">Hello, Elvis!</span></b></div>');
834+
}));
835+
836+
837+
it('should compile template when replacing root element',
838+
inject(function($compile, $templateCache, $rootScope) {
839+
$rootScope.name = 'Elvis';
840+
element = $compile('<div replace></div>')($rootScope);
841+
842+
$rootScope.$digest();
843+
844+
expect(sortedHtml(element)).
845+
toEqual('<span replace="">Hello, Elvis!</span>');
846+
}));
847+
848+
820849
it('should resolve widgets after cloning in append mode', function() {
821850
module(function($exceptionHandlerProvider) {
822851
$exceptionHandlerProvider.mode('log');

0 commit comments

Comments
 (0)