Skip to content

Instantly share code, notes, and snippets.

@blasten
Created September 24, 2016 01:18
Show Gist options
  • Save blasten/e7d43babe161518827b25d666ce2f42b to your computer and use it in GitHub Desktop.
Save blasten/e7d43babe161518827b25d666ce2f42b to your computer and use it in GitHub Desktop.
<dom-module id="x-list">
<template>
<iron-list item-height="_getItemHeight"></iron-list>
</template>
<script>
Polymer({
is: 'x-list',
_getItemHeight: function(node) {
if (node.hasTimeGap) {
return 116;
}
if (node.isCardEnd) {
return 72;
}
return 44;
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment