Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

<div [class.menu-bar]="menu?.menuType!=='ewv'" [ngClass]="{'blue':menu?.menuType==='ars', 'red': menu?.menuType==='fpps'}">
<div [class.container]="menu?.menuType!=='ewv'">
<div class="dropdown-bar" role="navigation">
<ul *ngFor="let dropDownParent of menu?.dropDownGroups">
<li class="dropdown-parent" [routerLinkActive]="dropDownParent?.parent?.disableRouterLink ? '' : 'active'">
<a [class.carat]="dropDownParent?.haspopup" [id]="dropDownParent?.parent.id" [routerLink]="dropDownParent?.parent.routerLink"
(mouseout)="onClearMenu()" (mouseenter)="focus(dropDownParent.parent.navFocus)" (focus)="focus(dropDownParent.parent.navFocus)"
[tabindex]="tabIdx">{{dropDownParent?.parent.heading}}</a>
<!-- Removed [attr.alt]="dropDownParent?.parent.alt" -->
<ul class="dropdown" [ngClass]="{'show': (dropDownParent?.parent.navFocus === menuName)}" *ngIf="dropDownParent?.dropdowns && dropDownParent?.dropdowns.length>0"
role="navigation">
<div class="top-space"></div>
<li *ngFor="let dropDownItem of dropDownParent?.dropdowns">
<a *ngIf="dropDownItem?.bindClick ; else genericTemplate" [id]="dropDownItem?.id" [tabindex]="tabIdx" (keyup.enter)="emitClick($event, dropDownItem )" (click)="emitClick($event, dropDownItem )">{{dropDownItem.heading}}</a>
<!-- Removed [attr.alt]="dropDownItem?.alt" -->
<ng-template #genericTemplate>
<a [href]="dropDownItem?.routerLink" [id]="dropDownItem?.id" [tabindex]="tabIdx">{{dropDownItem.heading}}</a>
<!-- [attr.alt]="dropDownItem?.alt" -->
</ng-template>
</li>
</ul>
<ul class="dropdown" [ngClass]="{'show': (dropDownParent?.parent.navFocus === menuName)}" *ngIf="dropDownParent?.dropdowns && dropDownParent?.dropdowns.length<1 && dropDownParent?.parent.heading === 'PDF References'"
role="navigation">
<div class="top-space"></div>
<li>
<span [tabindex]="tabIdx" role="alert" aria-live="assertive">No PDFs Uploaded</span>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>