This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
ng-animate 1.5.5 - ng-animate-ref - Broken on Safari Desktop and iOS 9.3 #14643
Open
Description
I have set up a very basic plunkr to animate list element between two views with ng-animate 1.5 - ng-animate-ref
.
It works for Firefox and Chrome but unfortunately it doesn't for iOS 9.3 and Safari Desktop.
http://plnkr.co/edit/UDX9XlIi3hpYcmJZQ5WD
Direct link to preview:
http://embed.plnkr.co/UDX9XlIi3hpYcmJZQ5WD/
.row.ng-leave {
transition: 0.2s linear all;
}
.row.ng-anchor-in-add {
transition: 0.5s linear all;
}
<div class="animated row" ng-repeat="i in a track by i" ng-animate-ref="item-{{i}}">{{i}}</div>
<br>
<div class="animated row" ng-repeat="i in b track by i" ng-animate-ref="item-{{i}}">{{i}}</div>
<a href="javascript:;" ng-click="start()">Start</a>
Behaviour
Expected Behaviour
iOS should also animate the element like in Chrome/Firefox