Skip to content

Instantly share code, notes, and snippets.

@t4t5
Last active April 4, 2017 11:01
Show Gist options
  • Save t4t5/ab68b89151dc089ea1d3a79fde56344e to your computer and use it in GitHub Desktop.
Save t4t5/ab68b89151dc089ea1d3a79fde56344e to your computer and use it in GitHub Desktop.
todo-item-template-2
{{! src/ui/components/todo-item/template.hbs }}
<li>
<p
data-checked={{@item.isDone}}
onclick={{action @toggleItem @item}}
>
{{@item.text}}
</p>
<button onclick={{action @deleteItem @item}}>
Delete item
</button>
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment