This commit is contained in:
Paul Liverman III 2018-03-16 16:42:35 -07:00
parent aeab084ecb
commit 3c825ad645

View File

@ -15,7 +15,7 @@ class extends Widget
ul ->
for task in *@tasks
li ->
input type: "checkbox", id: "task-#{task.id}", onchange: "check(#{task.id})" checked: task.done
input type: "checkbox", id: "task-#{task.id}", onchange: "check(#{task.id})", checked: task.done
text " #{task.text}"
li ->
form {