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

Commit

Permalink
docs(directives): add multiElement tag to appropriate directives
Browse files Browse the repository at this point in the history
Closes #11104
  • Loading branch information
petebacondarwin committed Jun 21, 2015
1 parent 8ceed4f commit e7662eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ng/directive/ngIf.js
Expand Up @@ -4,6 +4,7 @@
* @ngdoc directive
* @name ngIf
* @restrict A
* @multiElement
*
* @description
* The `ngIf` directive removes or recreates a portion of the DOM tree based on an
Expand Down
1 change: 1 addition & 0 deletions src/ng/directive/ngRepeat.js
Expand Up @@ -3,6 +3,7 @@
/**
* @ngdoc directive
* @name ngRepeat
* @multiElement
*
* @description
* The `ngRepeat` directive instantiates a template once per item from a collection. Each template
Expand Down
2 changes: 2 additions & 0 deletions src/ng/directive/ngShowHide.js
Expand Up @@ -5,6 +5,7 @@ var NG_HIDE_IN_PROGRESS_CLASS = 'ng-hide-animate';
/**
* @ngdoc directive
* @name ngShow
* @multiElement
*
* @description
* The `ngShow` directive shows or hides the given HTML element based on the expression
Expand Down Expand Up @@ -180,6 +181,7 @@ var ngShowDirective = ['$animate', function($animate) {
/**
* @ngdoc directive
* @name ngHide
* @multiElement
*
* @description
* The `ngHide` directive shows or hides the given HTML element based on the expression
Expand Down

0 comments on commit e7662eb

Please sign in to comment.