()
| 99 | }); |
| 100 | } |
| 101 | loopTransformAnimation() { |
| 102 | if ( !this.requestId ) { |
| 103 | this.requestId = requestAnimationFrame(() => this.move()); |
| 104 | } |
| 105 | } |
| 106 | // stop the render loop animation (rAF) |
| 107 | stopTransformAnimation() { |
| 108 | if ( this.requestId ) { |
no test coverage detected