fix example line length nit

This commit is contained in:
Yoshua Wuyts
2017-04-26 04:09:55 +02:00
parent d17b3e4801
commit 357d7d14b5
+2 -1
View File
@@ -292,8 +292,9 @@ function Header (state, emit) {
} }
function TodoItem (todo, emit) { function TodoItem (todo, emit) {
var clx = classList({ completed: todo.done, editing: todo.editing })
return html` return html`
<li class=${classList({ completed: todo.done, editing: todo.editing })}> <li id=${todo.id} class=${clx}>
<div class="view"> <div class="view">
<input <input
type="checkbox" type="checkbox"