fix(animations): update wapi polyfill

Do not clear out all inline styles after the web animation api
polypfill has finished.
This commit is contained in:
Adam Bradley
2015-09-06 22:13:03 -05:00
parent 02db50e96d
commit 3c4d36b835
5 changed files with 17 additions and 8 deletions

View File

@ -31,9 +31,16 @@
scope.apply(target, interpolation.property, interpolation.interpolation(scaledLocalTime));
});
} else {
for (var property in propertySpecificKeyframeGroups)
if (property != 'offset' && property != 'easing' && property != 'composite')
scope.clear(target, property);
// IONIC HACK!
// DO NOT CLEAR OUT THE INLINE STYLE HERE
// IONIC ANIMATE SETS INLINE STYLES ITSELF AND THE WEB ANIMATIONS API WILL
// OVERWRITE IONIC DUE TO THE ASYNC PROMISES THAT FIRE OFF AFTER ONFINISH
// for (var property in propertySpecificKeyframeGroups)
// if (property != 'offset' && property != 'easing' && property != 'composite')
// scope.clear(target, property);
}
};
};