Skip to content

Commit

Permalink
Merge pull request #3 from ibarrick/focus-fix-chips
Browse files Browse the repository at this point in the history
focus fix for contact chips
  • Loading branch information
pauln authored Nov 3, 2016
2 parents a0b4282 + c28c6bf commit 62ecd75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/templates/components/paper-contact-chips.hbs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<md-chips class="md-chips md-contact-chips {{if isFocused 'md-focused'}}">
<md-chips-wrap class="md-chips md-contact-chips {{if isFocused 'md-focused'}}" tabindex="-1" onkeydown={{action 'keyDown'}} onfocus={{action 'chipsFocus'}} onblur={{action 'chipsBlur'}}>
<md-chips class="md-chips md-contact-chips {{if (and (not readOnly) isFocused) 'md-focused'}}">
<md-chips-wrap class="md-chips md-contact-chips {{if (and (not readOnly) isFocused) 'md-focused'}}" tabindex="-1" onkeydown={{action 'keyDown'}} onfocus={{action 'chipsFocus'}} onblur={{action 'chipsBlur'}}>
{{#each content as |item index|}}
<md-chip class="md-chip md-default-theme {{if (eq activeChip index) 'md-focused'}}">
<md-chip class="md-chip md-default-theme {{if readOnly 'md-readonly'}} {{if (eq activeChip index) 'md-focused'}}">
<div class="md-chip-content" tabindex="-1" aria-hidden="true">
<div class="md-contact-avatar">
<img src={{item.image}}>
Expand Down

0 comments on commit 62ecd75

Please sign in to comment.