Commit b0e2c15a authored by Pascal Hartig's avatar Pascal Hartig

Olives: Escape todo title in list rendering (#397)

parent f9552feb
...@@ -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