fix(animations): make sure the easing value is passed into the web-animations player

Closes #9517
Closes #9523
This commit is contained in:
Matias Niemelä
2016-06-22 23:57:49 -07:00
parent ae75e3640a
commit c43aec2182
2 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,7 @@ export class WebAnimationsDriver implements AnimationDriver {
var playerOptions = {
'duration': duration,
'delay': delay,
'easing': easing,
'fill': 'both' // we use `both` because it allows for styling at 0% to work with `delay`
};