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

doc(ngIf): mention multiElement in documentation #11104

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/ng/directive/ngIf.js
Expand Up @@ -32,6 +32,9 @@
* Additionally, you can provide animations via the `ngAnimate` module to animate the `enter`
* and `leave` effects.
*
* You can use ng-if across few dom elements. First element needs `ng-if-start="expresion"`, and the
* last one `ng-if-end`. Those two and all elements between will hide/appear together.
*
* @animations
* enter - happens just after the `ngIf` contents change and a new DOM element is created and injected into the `ngIf` container
* leave - happens just before the `ngIf` contents are removed from the DOM
Expand Down