Skip to content

Commit

Permalink
Olives: Escape todo title in list rendering (tastejs#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
passy committed Jan 28, 2013
1 parent f9552fe commit b0e2c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/architecture-examples/olives/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1>todos</h1>
<li data-model="bind:toggleClass,completed,completed;">
<div class="view">
<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>
</div>
<input class="edit" data-model="bind:value,title" data-event="listen:keydown,stopEdit; listen:blur,stopEdit">
Expand Down

0 comments on commit b0e2c15

Please sign in to comment.