summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/emberjs-debug/source/app/templates/components/todo-list.hbs
blob: 309d07a1f417cf1c188930c5cbfb33a7051c7866 (plain)
1
2
3
4
5
6
7
8
9
10
{{#if todos.length}}
  {{#if canToggle}}
    <input type="checkbox" id="toggle-all" checked={{allCompleted}} onchange={{action 'toggleAll'}}>
  {{/if}}
  <ul id="todo-list" class="todo-list">
    {{#each todos as |todo|}}
      {{todo-item todo=todo onStartEdit=(action 'disableToggle') onEndEdit=(action 'enableToggle')}}
    {{/each}}
  </ul>
{{/if}}