Created
February 27, 2017 12:38
-
-
Save rafagarcia/560ba2e114a7f07b9bf1bd7112f86a59 to your computer and use it in GitHub Desktop.
List element inside list.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <iron-list items="[[data]]" selected-item="{{selectedItem}}" as="item" selection-enabled> | |
| <template> | |
| <!-- Good candidate to be converted into a component --> | |
| <div class="item" tabindex$="[[index]]"> | |
| <img src$="[[item.image]]" alt$="[[item.firstName]] [[item.lastName]]" /> | |
| <span class="item__name">[[item.firstName]] [[item.lastName]]</span> | |
| <span class="item__link">View employee ></span> | |
| </div> | |
| </template> | |
| </iron-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment