()
| 4381 | this._queueCallback(complete, this._element, this._config.animation); |
| 4382 | } |
| 4383 | dispose() { |
| 4384 | this._clearTimeout(); |
| 4385 | if (this.isShown()) { |
| 4386 | this._element.classList.remove(CLASS_NAME_SHOW); |
| 4387 | } |
| 4388 | super.dispose(); |
| 4389 | } |
| 4390 | isShown() { |
| 4391 | return this._element.classList.contains(CLASS_NAME_SHOW); |
| 4392 | } |
nothing calls this directly
no test coverage detected