Skip to content

Instantly share code, notes, and snippets.

@rafagarcia
Created February 27, 2017 12:38
Show Gist options
  • Select an option

  • Save rafagarcia/560ba2e114a7f07b9bf1bd7112f86a59 to your computer and use it in GitHub Desktop.

Select an option

Save rafagarcia/560ba2e114a7f07b9bf1bd7112f86a59 to your computer and use it in GitHub Desktop.
List element inside list.html
<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 &gt;</span>
</div>
</template>
</iron-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment