Skip to content
This repository has been archived by the owner on Jun 8, 2020. It is now read-only.

Releases: jasonmit/virtual-each

Safely set style attributes

27 Aug 00:37
Compare
Choose a tag to compare
0.0.4

version bump

onBottom action

27 Aug 00:25
Compare
Choose a tag to compare
{{#virtual-each
  height=200
  itemHeight=36
  onBotttom=(action 'handlePageBottom')
  items=items as |item index|
}}
  <div class="person-row">
    <img src={{item.picture}} />
    <div>
      <div>{{index}} {{item.name.last}}, {{item.name.first}}</div>
      <div class="company">{{item.company}}</div>
    </div>
  </div>
{{/virtual-each}}

Expose the underlying index, not the virtualized index

26 Aug 23:14
Compare
Choose a tag to compare
{{#virtual-each
  height=200
  itemHeight=36
  items=items as |item index|
}}
  <div class="person-row">
    <img src={{item.picture}} />
    <div>
      <div>{{index}} {{item.name.last}}, {{item.name.first}}</div>
      <div class="company">{{item.company}}</div>
    </div>
  </div>
{{/virtual-each}}

Initial release

26 Aug 22:52
Compare
Choose a tag to compare
0.0.1

adding repo