remove tabindex attribute (#9616)

This commit is contained in:
Alan Ren
2020-03-13 14:10:26 -07:00
committed by GitHub
parent 8a548c2b56
commit 56851dedd2

View File

@@ -15,7 +15,7 @@ export abstract class TabChild extends AngularDisposable {
@Component({ @Component({
selector: 'tab', selector: 'tab',
template: ` template: `
<div role="tabpanel" [attr.aria-labelledby]="identifier" tabindex="0" class="visibility" [class.hidden]="shouldBeHidden()" *ngIf="shouldBeIfed()" class="fullsize"> <div role="tabpanel" [attr.aria-labelledby]="identifier" class="visibility" [class.hidden]="shouldBeHidden()" *ngIf="shouldBeIfed()" class="fullsize">
<ng-container *ngTemplateOutlet="templateRef"></ng-container> <ng-container *ngTemplateOutlet="templateRef"></ng-container>
</div> </div>
` `