File tree 1 file changed +0
-17
lines changed 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change 195
195
196
196
scope . groupChildDuration = groupChildDuration ;
197
197
198
- // Alias GroupEffect & SequenceEffect to AnimationGroup & AnimationSequence respectively, to
199
- // support old constructors (Animation*) for a deprecation period. Should be removed after 23 June
200
- // 2015.
201
- window . AnimationSequence = function ( ) {
202
- shared . deprecated ( 'window.AnimationSequence' , '2015-03-23' , 'Use window.SequenceEffect instead.' ) ;
203
- window . SequenceEffect . apply ( this , arguments ) ;
204
- } ;
205
- window . AnimationSequence . prototype = Object . create ( window . SequenceEffect . prototype ) ;
206
- window . AnimationSequence . prototype . constructor = window . AnimationSequence ;
207
-
208
- window . AnimationGroup = function ( ) {
209
- shared . deprecated ( 'window.AnimationGroup' , '2015-03-23' , 'Use window.GroupEffect instead.' ) ;
210
- window . GroupEffect . apply ( this , arguments ) ;
211
- } ;
212
- window . AnimationGroup . prototype = Object . create ( window . GroupEffect . prototype ) ;
213
- window . AnimationGroup . prototype . constructor = window . AnimationGroup ;
214
-
215
198
} ) ( webAnimationsShared , webAnimationsNext , webAnimationsTesting ) ;
You can’t perform that action at this time.
0 commit comments