(callback)
| 2143 | }); |
| 2144 | } |
| 2145 | hide(callback) { |
| 2146 | if (!this._config.isVisible) { |
| 2147 | execute(callback); |
| 2148 | return; |
| 2149 | } |
| 2150 | this._getElement().classList.remove(CLASS_NAME_SHOW$5); |
| 2151 | this._emulateAnimation(() => { |
| 2152 | this.dispose(); |
| 2153 | execute(callback); |
| 2154 | }); |
| 2155 | } |
| 2156 | dispose() { |
| 2157 | if (!this._isAppended) { |
| 2158 | return; |
nothing calls this directly
no test coverage detected