We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8997db0 commit 959a8a1Copy full SHA for 959a8a1
src/cdk/overlay/overlay-ref.ts
@@ -52,6 +52,11 @@ export class OverlayRef implements PortalOutlet {
52
return this._pane;
53
}
54
55
+ /** The overlay's backdrop HTML element. */
56
+ get backdropElement(): HTMLElement | null {
57
+ return this._backdropElement;
58
+ }
59
+
60
attach<T>(portal: ComponentPortal<T>): ComponentRef<T>;
61
attach<T>(portal: TemplatePortal<T>): EmbeddedViewRef<T>;
62
attach(portal: any): any;
0 commit comments