@@ -1019,7 +1019,6 @@ define(['exports'], (function (exports) { 'use strict';
10191019 this . _isPaused = false ;
10201020 this . _pauseStart = 0 ;
10211021 this . _onStartCallbackFired = false ;
1022- this . _onEveryStartCallbackFired = false ;
10231022 // Empty on purpose. Use `.add()` to compose.
10241023 // Sequential by default, parallel via explicit offsets, labels, or options.
10251024 }
@@ -1244,7 +1243,6 @@ define(['exports'], (function (exports) { 'use strict';
12441243 cloned . _labels [ name_1 ] = this . _labels [ name_1 ] ;
12451244 }
12461245 cloned . _onStartCallback = this . _onStartCallback ;
1247- cloned . _onEveryStartCallback = this . _onEveryStartCallback ;
12481246 cloned . _onUpdateCallback = this . _onUpdateCallback ;
12491247 cloned . _onCompleteCallback = this . _onCompleteCallback ;
12501248 cloned . _onStopCallback = this . _onStopCallback ;
@@ -1282,10 +1280,6 @@ define(['exports'], (function (exports) { 'use strict';
12821280 this . _onStartCallback = callback ;
12831281 return this ;
12841282 } ;
1285- Timeline . prototype . onEveryStart = function ( callback ) {
1286- this . _onEveryStartCallback = callback ;
1287- return this ;
1288- } ;
12891283 Timeline . prototype . onUpdate = function ( callback ) {
12901284 this . _onUpdateCallback = callback ;
12911285 return this ;
@@ -1330,7 +1324,6 @@ define(['exports'], (function (exports) { 'use strict';
13301324 this . _isPlaying = true ;
13311325 this . _isPaused = false ;
13321326 this . _onStartCallbackFired = false ;
1333- this . _onEveryStartCallbackFired = false ;
13341327 this . _startTime = time ;
13351328 for ( var _i = 0 , _a = this . _entries ; _i < _a . length ; _i ++ ) {
13361329 var entry = _a [ _i ] ;
@@ -1392,11 +1385,6 @@ define(['exports'], (function (exports) { 'use strict';
13921385 this . _onStartCallback ( this ) ;
13931386 this . _onStartCallbackFired = true ;
13941387 }
1395- if ( ! this . _onEveryStartCallbackFired ) {
1396- if ( this . _onEveryStartCallback )
1397- this . _onEveryStartCallback ( this ) ;
1398- this . _onEveryStartCallbackFired = true ;
1399- }
14001388 var timelineLocal = time - this . _startTime ;
14011389 var effectiveLocal = ! isFinite ( this . _duration ) ? timelineLocal : Math . min ( timelineLocal , this . _duration ) ;
14021390 for ( var _i = 0 , _a = this . _entries ; _i < _a . length ; _i ++ ) {
0 commit comments