(e)
| 240 | } |
| 241 | |
| 242 | hideWithDelay(e) { |
| 243 | if (this._showTimeout) { |
| 244 | this.clearShowTimeout(); |
| 245 | } |
| 246 | this._hideTimeout = setTimeout( |
| 247 | this.hide.bind(this, e), |
| 248 | this.getDelay('hide'), |
| 249 | ); |
| 250 | } |
| 251 | |
| 252 | clearShowTimeout() { |
| 253 | clearTimeout(this._showTimeout); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…