From 169cb3115af42cd8636f4f14241a62e94e81d566 Mon Sep 17 00:00:00 2001 From: Tsvetan Raikov Date: Mon, 18 Apr 2016 11:39:26 +0300 Subject: [PATCH] Fixed: Change of CSS class during animation execution does not apply on Android --- ui/styling/css-selector.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/styling/css-selector.ts b/ui/styling/css-selector.ts index b30bdd5db..026d52a5f 100644 --- a/ui/styling/css-selector.ts +++ b/ui/styling/css-selector.ts @@ -88,6 +88,7 @@ export class CssSelector { } } }); + view._unregisterAllAnimations(); if (this.animations && view.isLoaded && view._nativeView !== undefined) { for (let animationInfo of this.animations) { let animation = keyframeAnimation.KeyframeAnimation.keyframeAnimationFromInfo(animationInfo, modifier);