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

fix(ngTranslude): detect ngTranslude usage without a translusion directive #4162

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/ng/directive/ngTransclude.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,14 @@
*
*/
var ngTranscludeDirective = ngDirective({
controller: ['$transclude', function($transclude) {
controller: ['$element', '$transclude', function($element, $transclude) {
if (!$transclude) {
throw minErr('ngTransclude')('orphan',
'Illegal use of ngTransclude directive in the template! ' +
'No parent directive that requires a transclusion found. ' +
startingTag($element));
}

// remember the transclusion fn but call it during linking so that we don't process transclusion before directives on
// the parent element even when the transclusion replaces the current element. (we can't use priority here because
// that applies only to compile fns and not controllers
Expand Down
12 changes: 12 additions & 0 deletions test/ng/compileSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2798,6 +2798,18 @@ describe('$compile', function() {
});


it('should throw on an ng-translude element inside no transclusion directive', function() {
inject(function ($rootScope, $compile) {
expect(function () {
$compile('<div><div ng-transclude></div></div>')($rootScope);
}).toThrowMinErr('ngTransclude', 'orphan',
'Illegal use of ngTransclude directive in the template! ' +
'No parent directive that requires a transclusion found. ' +
'<div ng-transclude="">');
});
});


it('should make the result of a transclusion available to the parent directive in post-linking phase (template)',
function() {
module(function() {
Expand Down