()
| 159 | } |
| 160 | |
| 161 | onEnterDOM() { |
| 162 | ResizeHandler.register(this, this._handleResizeBound); |
| 163 | |
| 164 | this.getDomRef()!.querySelectorAll(".ui5-bar-content-container").forEach(child => { |
| 165 | ResizeHandler.register(child as HTMLElement, this._handleResizeBound); |
| 166 | }, this); |
| 167 | } |
| 168 | |
| 169 | onExitDOM() { |
| 170 | ResizeHandler.deregister(this, this._handleResizeBound); |
no test coverage detected