Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
fix(filter): remove from tabindex if drawer closed
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancarriger committed Dec 8, 2016
1 parent 81ae40c commit c796c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/home/filter/filter.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<a class="right item" aria-label="Instagram social media external link" href="https://www.instagram.com/cleantothecore/" target="_blank" [tabindex]="map === 'mobile' && !drawerOpen ? -1 : null" [attr.aria-hidden]="map === 'mobile' && !drawerOpen">
<app-icon-instagram></app-icon-instagram>
</a>
<a class="right item" aria-label="Facebook social media external link" href="https://www.facebook.com/Clean-to-the-Core-456459467870666/" target="_blank" [tabindex]="map === 'mobile' && drawerOpen ? -1 : null" [attr.aria-hidden]="map === 'mobile' && !drawerOpen">
<a class="right item" aria-label="Facebook social media external link" href="https://www.facebook.com/Clean-to-the-Core-456459467870666/" target="_blank" [tabindex]="map === 'mobile' && !drawerOpen ? -1 : null" [attr.aria-hidden]="map === 'mobile' && !drawerOpen">
<app-icon-facebook></app-icon-facebook>
</a>
<a class="right item" aria-label="Pinterest social media external link" href="https://www.pinterest.com/janesmith0711/" target="_blank" [tabindex]="map === 'mobile' && !drawerOpen ? -1 : null" [attr.aria-hidden]="map === 'mobile' && !drawerOpen">
Expand Down

0 comments on commit c796c07

Please sign in to comment.