Polymer iron list with firebase collection/document -
is there way combine polymer firebase-collection iron-list?
i'm able show data firebase-collection, want use iron-list style elements...
<firebase-collection data="{{games}}" location="url"> </firebase-collection> <template is="dom-repeat" items="{{games}}" as="game"> <div> <span>{{game.home}}</span> <span class="game_score"> <span>{{game.home_score}}</span> - <span>{{game.away_score}}</span> </span> <span>{{game.away}}</span> </div> </template>
Comments
Post a Comment