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.
ngAnimate breaks jquery.transit (and possibly other transform-based animations) under Chrome #6675
Closed
Description
I'm trying to animate transforms using JavaScript-based animations.
(...)
enter: function(element, done) {
element.transition( { scale: 1.5 }, done );
}
(...)
Although the above behaviour could be easily achieved using CSS, I need to use JS-animations (it's part of a bigger scenario).
Unfortunately this doesn't work under Chrome. The transform is immediately set to the final value.
The problem is, ngAnimate in its animateSetup
disables the transition with blockTransitions
(as a workaround for a bug in Chrome/FF as it claims).
Apparently this workaround leads to another bug under Chrome/FF.