()
| 574 | } |
| 575 | |
| 576 | private onStart() { |
| 577 | if (!this.isAnimating || !this.animation) { |
| 578 | assert(false, 'isAnimating has to be true'); |
| 579 | return; |
| 580 | } |
| 581 | |
| 582 | // the cloned animation should not use an easing curve during seek |
| 583 | (this.animation as Animation).progressStart(true, this._isOpen ? 1 : 0); |
| 584 | } |
| 585 | |
| 586 | private onMove(detail: GestureDetail) { |
| 587 | if (!this.isAnimating || !this.animation) { |
no test coverage detected