()
| 33 | public constructor(public maxSlides: number) {} |
| 34 | |
| 35 | public first() { |
| 36 | this.currentSlide = 0; |
| 37 | localStorage.set(CURRENT_SLIDE_KEY, this.currentSlide.toString(10)); |
| 38 | this.show(); |
| 39 | } |
| 40 | |
| 41 | public next() { |
| 42 | if (this.currentSlide < this.maxSlides - 1) { |
no test coverage detected