File tree 1 file changed +6
-2
lines changed 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 35
35
this . _iterationStart = 0 ;
36
36
this . _iterations = 1 ;
37
37
this . _duration = 0 ;
38
- this . playbackRate = 1 ;
38
+ this . _playbackRate = 1 ;
39
39
this . _direction = 'normal' ;
40
40
this . _easing = 'linear' ;
41
41
}
50
50
if ( this . _effect ) {
51
51
this . _effect . _timingInput [ member ] = value ;
52
52
this . _renormalize ( ) ;
53
+ this . _effect . activeDuration = shared . calculateActiveDuration ( this . _effect . _timing ) ;
53
54
if ( this . _effect . _animation ) {
54
55
this . _effect . _animation . _rebuildUnderlyingAnimation ( ) ;
55
56
}
85
86
get duration ( ) {
86
87
return this . _duration ;
87
88
} ,
89
+ get playbackRate ( ) {
90
+ return this . _playbackRate ;
91
+ } ,
88
92
set direction ( value ) {
89
93
this . _setMember ( 'direction' , value ) ;
90
94
} ,
139
143
140
144
function normalizeTimingInput ( timingInput , forGroup ) {
141
145
var timing = makeTiming ( timingInput , forGroup ) ;
142
- timing . easing = toTimingFunction ( timing . easing ) ;
146
+ timing . _easing = toTimingFunction ( timing . easing ) ;
143
147
return timing ;
144
148
}
145
149
You can’t perform that action at this time.
0 commit comments