()
| 98 | }; |
| 99 | |
| 100 | autoScheduleTransition() { |
| 101 | this.clearScheduledTransition(); |
| 102 | if (this.autoplay && this.autoplaySpeed) { |
| 103 | this.scheduledId = setTimeout(() => this.next(), this.autoplaySpeed); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | clearScheduledTransition() { |
| 108 | if (this.scheduledId) { |
no test coverage detected