jgwhite/ember-sortable

View on GitHub
test-app/app/components/row/template.hbs

Summary

Maintainability
Test Coverage
<tr ...attributes>
  {{#if this.isEven}}
    <Cells::Sortable @index={{@index}} />
  {{else}}
    <Cells::Sortable @index={{@index}} class="odd-class"/>
  {{/if}}
  <Cells::Fruit @record={{@record}} />
  <Cells::DayOfWeek @record={{@record}}/>
</tr>