Commit 0d229a1d authored by Sindre Sorhus's avatar Sindre Sorhus

Merge pull request #410 from passy/olives-escaping

Olives: Escape todo title in list rendering (#397)
parents f9552feb b0e2c15a
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<li data-model="bind:toggleClass,completed,completed;"> <li data-model="bind:toggleClass,completed,completed;">
<div class="view"> <div class="view">
<input class="toggle" type="checkbox" data-model="bind:checked,completed"> <input class="toggle" type="checkbox" data-model="bind:checked,completed">
<label data-model="bind:innerHTML,title" data-event="listen:dblclick,startEdit"></label> <label data-model="bind:textContent,title" data-event="listen:dblclick,startEdit"></label>
<button class="destroy" data-event="listen:click,remove"></button> <button class="destroy" data-event="listen:click,remove"></button>
</div> </div>
<input class="edit" data-model="bind:value,title" data-event="listen:keydown,stopEdit; listen:blur,stopEdit"> <input class="edit" data-model="bind:value,title" data-event="listen:keydown,stopEdit; listen:blur,stopEdit">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment