()
| 80 | }) |
| 81 | } |
| 82 | resize(){ |
| 83 | let windowHeight = window.innerHeight |
| 84 | Array.from(this.allObjects).map(([name, value]) => { |
| 85 | value.resize(windowHeight) |
| 86 | }); |
| 87 | } |
| 88 | public removeObject(id: string){ |
| 89 | let removedObject = this.objectsMap.get(id) |
| 90 | if(removedObject?.showObserver != null){ |
nothing calls this directly
no outgoing calls
no test coverage detected