Updates the position of the overlay based on the position strategy.
()
| 323 | |
| 324 | /** Updates the position of the overlay based on the position strategy. */ |
| 325 | updatePosition(): void { |
| 326 | if (this._positionStrategy) { |
| 327 | this._positionStrategy.apply(); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | /** Switches to a new position strategy and updates the overlay position. */ |
| 332 | updatePositionStrategy(strategy: PositionStrategy): void { |
no test coverage detected