(item: ITransitionItem)
| 603 | } |
| 604 | |
| 605 | private onTweenComplete(item: ITransitionItem): void { |
| 606 | item.tweener = undefined; |
| 607 | this._totalTasks--; |
| 608 | this.callHook(item, true); |
| 609 | this.checkAllComplete(); |
| 610 | } |
| 611 | |
| 612 | private checkAllComplete(): void { |
| 613 | if (this._playing && this._totalTasks === 0) { |
no test coverage detected