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

Commit e7662eb

Browse files
docs(directives): add multiElement tag to appropriate directives
Closes #11104
1 parent 8ceed4f commit e7662eb

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/ng/directive/ngIf.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* @ngdoc directive
55
* @name ngIf
66
* @restrict A
7+
* @multiElement
78
*
89
* @description
910
* The `ngIf` directive removes or recreates a portion of the DOM tree based on an

src/ng/directive/ngRepeat.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* @ngdoc directive
55
* @name ngRepeat
6+
* @multiElement
67
*
78
* @description
89
* The `ngRepeat` directive instantiates a template once per item from a collection. Each template

src/ng/directive/ngShowHide.js

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ var NG_HIDE_IN_PROGRESS_CLASS = 'ng-hide-animate';
55
/**
66
* @ngdoc directive
77
* @name ngShow
8+
* @multiElement
89
*
910
* @description
1011
* The `ngShow` directive shows or hides the given HTML element based on the expression
@@ -180,6 +181,7 @@ var ngShowDirective = ['$animate', function($animate) {
180181
/**
181182
* @ngdoc directive
182183
* @name ngHide
184+
* @multiElement
183185
*
184186
* @description
185187
* The `ngHide` directive shows or hides the given HTML element based on the expression

0 commit comments

Comments
 (0)