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 6bc6dc0 commit ab0e985Copy full SHA for ab0e985
src/lib/core/a11y/focus-trap.html
@@ -1,3 +1,3 @@
1
-<div *ngIf="active" tabindex="0" (focus)="focusLastTabbableElement()"></div>
+<div *ngIf="!disabled" tabindex="0" (focus)="focusLastTabbableElement()"></div>
2
<div #trappedContent><ng-content></ng-content></div>
3
-<div *ngIf="active" tabindex="0" (focus)="focusFirstTabbableElement()"></div>
+<div *ngIf="!disabled" tabindex="0" (focus)="focusFirstTabbableElement()"></div>
0 commit comments