Detaches the current overlay directive.
()
| 801 | |
| 802 | /** Detaches the current overlay directive. */ |
| 803 | private _detachOverlay() { |
| 804 | this._overlayDir.detachOverlay(); |
| 805 | // Some of the overlay detachment logic depends on change detection. |
| 806 | // Mark for check to ensure that things get picked up in a timely manner. |
| 807 | this._changeDetectorRef.markForCheck(); |
| 808 | } |
| 809 | |
| 810 | /** |
| 811 | * Sets the select's value. Part of the ControlValueAccessor interface |
no test coverage detected