(useAnimation = false)
| 186 | } |
| 187 | |
| 188 | requestUpdate(useAnimation = false) { |
| 189 | // A pending update will be resolved later, no need to try again. |
| 190 | if (this._hasPendingUpdate) return; |
| 191 | this._hasPendingUpdate = true; |
| 192 | this._requestUpdateIfVisible(useAnimation); |
| 193 | } |
| 194 | |
| 195 | _requestUpdateIfVisible(useAnimation = true) { |
| 196 | if (!this._contentIsVisible) return; |
no test coverage detected