fix(animations): remove unnecessary transform

Fixes #803
This commit is contained in:
Brandy Carney
2015-12-28 12:21:56 -05:00
parent 63866338e8
commit f82904fe51

View File

@ -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)';
}
}
}