@private
()
| 260 | |
| 261 | /** @private */ |
| 262 | _syncPosition() { |
| 263 | const rect = video.renderer.getCanvas().getBoundingClientRect(); |
| 264 | const s = this.panelWrap.style; |
| 265 | s.top = `${rect.top}px`; |
| 266 | s.left = `${rect.left}px`; |
| 267 | s.width = `${rect.width}px`; |
| 268 | } |
| 269 | |
| 270 | /** @private */ |
| 271 | _updatePanel() { |
no test coverage detected