Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix($animate): insert elements at the start of the parent container i…
…nstead of at the end $animate.enter and $animate.move both insert the element at the end of the provided parent container element. If an after element is provided then they will place the inserted element after that one. This works fine, but there is no way to place an item at the top of the provided parent container using both these functions. This commit fixes this issue. BREAKING CHANGE: $animate will no longer place elements at the end of the parent container when enter or move is used with a parent container element. Any former directives that rely on this feature must be slightly modified to work around this fix. The same effect can be achieved by finding the final element in the parent container list and using that as the after element (which is the 3rd argument in the enter and move $animate operations). Closes angular#4934 Closes angular#6275
- Loading branch information