MCPcopy Index your code
hub / github.com/angular/components / FakePositionStrategy

Class FakePositionStrategy

src/cdk/overlay/overlay.spec.ts:1106–1118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1104}
1105
1106class FakePositionStrategy implements PositionStrategy {
1107 element: HTMLElement | undefined;
1108
1109 apply(): void {
1110 this.element?.classList.add('fake-positioned');
1111 }
1112
1113 attach(overlayRef: OverlayRef) {
1114 this.element = overlayRef.overlayElement;
1115 }
1116
1117 dispose() {}
1118}
1119
1120class FakeScrollStrategy implements ScrollStrategy {
1121 isEnabled = false;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…