* Cleans up any non-entity elements created by the data source. Currently this only affects ScreenOverlay elements.
()
| 3829 | * Cleans up any non-entity elements created by the data source. Currently this only affects ScreenOverlay elements. |
| 3830 | */ |
| 3831 | destroy() { |
| 3832 | while (this._screenOverlays.length > 0) { |
| 3833 | const elem = this._screenOverlays.pop(); |
| 3834 | elem.remove(); |
| 3835 | } |
| 3836 | } |
| 3837 | |
| 3838 | /** |
| 3839 | * Updates any NetworkLink that require updating. |
no test coverage detected