You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(animations): remove incorrect information regarding animateChild (angular#44216)
Remove incorrect information present in the angular.io animations documentation
stating that animateChild does not work with route transition animations
as that turned out not to be true
This PR effectively reverts the changes make in PR: angular#44014
For more context see issue angular#30477
PR Closeangular#44216
Copy file name to clipboardExpand all lines: aio/content/guide/animations.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -289,7 +289,7 @@ What it does
289
289
290
290
<tr>
291
291
<td><code>query()</code></td>
292
-
<td>Finds one or more inner HTML elements within the current element.</td>
292
+
<td>Finds one or more inner HTML elements within the current element.</td>
293
293
</tr>
294
294
295
295
<tr>
@@ -314,7 +314,7 @@ What it does
314
314
315
315
<tr>
316
316
<td><code>animateChild()</code></td>
317
-
<td>Allows animations on child components to be run within the same timeframe as the parent. <strong>Note:</strong> Please see GitHub Issue <ahref="https://github.com/angular/angular/issues/30477">#30477</a> before attempting to use <code>animateChild()</code> together with route transition animations.</td>
317
+
<td>Allows animations on child components to be run within the same timeframe as the parent.</td>
Copy file name to clipboardExpand all lines: aio/content/guide/route-animations.md
-12Lines changed: 0 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,12 +75,6 @@ Animations can be defined directly inside your components. For this example you
75
75
76
76
The following code snippet defines a reusable animation named `slideInAnimation`.
77
77
78
-
<divclass="alert is-important">
79
-
80
-
**Note:**`animateChild()` does not currently work with route transition animations. Please see GitHub Issue <ahref="https://github.com/angular/angular/issues/30477">#30477</a> for more information.
The animation definition performs the following tasks:
@@ -114,12 +108,6 @@ Use the `query()` method to find and animate elements within the current host co
114
108
115
109
Assume that you are routing from the *Home => About*.
116
110
117
-
<divclass="alert is-important">
118
-
119
-
**Note:**`animateChild()` does not currently work with route transition animations. Please see GitHub Issue <ahref="https://github.com/angular/angular/issues/30477">#30477</a> for more information.
0 commit comments