From f82904fe513319e024f66e7c4c32ea8c552bf50c Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 28 Dec 2015 12:21:56 -0500 Subject: [PATCH] fix(animations): remove unnecessary transform Fixes #803 --- ionic/animations/animation.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/ionic/animations/animation.ts b/ionic/animations/animation.ts index 7d053f956d..71bda70c1c 100644 --- a/ionic/animations/animation.ts +++ b/ionic/animations/animation.ts @@ -772,8 +772,6 @@ function inlineStyle(ele, effect) { if (transforms.length) { transforms.push('translateZ(0px)'); ele.style[CSS.transform] = transforms.join(' '); - } else { - ele.style[CSS.transform] = 'translateZ(0px)'; } } }