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

Commit 466320f

Browse files
fix($compile): render nested transclusion at the root of a template
Closes #8914 Closes #8925
1 parent 7e02fa0 commit 466320f

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

src/ng/compile.js

+4
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
847847
? JQLitePrototype.clone.call($compileNodes) // IMPORTANT!!!
848848
: $compileNodes;
849849

850+
if ( $linkNode.length === 0 && parentBoundTranscludeFn ) {
851+
$linkNode = parentBoundTranscludeFn(scope);
852+
}
853+
850854
forEach(transcludeControllers, function(instance, name) {
851855
$linkNode.data('$' + name + 'Controller', instance);
852856
});

test/ng/compileSpec.js

+31
Original file line numberDiff line numberDiff line change
@@ -4097,6 +4097,37 @@ describe('$compile', function() {
40974097
});
40984098

40994099

4100+
describe('collocated nested transcludes', function() {
4101+
4102+
beforeEach(module(function($compileProvider) {
4103+
4104+
$compileProvider.directive('inner', valueFn({
4105+
restrict: 'E',
4106+
transclude: true,
4107+
template: '<u ng-transclude></u>'
4108+
}));
4109+
4110+
$compileProvider.directive('outer', valueFn({
4111+
restrict: 'E',
4112+
transclude: true,
4113+
template: '<a href="#"><inner ng-transclude></inner></a>'
4114+
}));
4115+
4116+
}));
4117+
4118+
4119+
// Issue #8914
4120+
it('should render nested transclusion at the root of a template', inject(function($compile, $rootScope) {
4121+
4122+
element = $compile('<div><outer>transcluded content</outer></div>')($rootScope);
4123+
$rootScope.$digest();
4124+
expect(element.text()).toEqual('transcluded content');
4125+
4126+
}));
4127+
4128+
});
4129+
4130+
41004131
describe('nested transcludes', function() {
41014132

41024133
beforeEach(module(function($compileProvider) {

0 commit comments

Comments
 (0)