()
| 487 | } |
| 488 | |
| 489 | off () { |
| 490 | if (!this.#enabled) { |
| 491 | return |
| 492 | } |
| 493 | clearTimeout(this.#timeout) |
| 494 | this.#timeout = null |
| 495 | clearInterval(this.#interval) |
| 496 | this.#interval = null |
| 497 | this.#frameIndex = 0 |
| 498 | this.#lastUpdate = 0 |
| 499 | this.#clearSpinner() |
| 500 | } |
| 501 | |
| 502 | resume () { |
| 503 | this.#render(true) |
nothing calls this directly
no test coverage detected