Commit d502e4eb authored by ben hockey's avatar ben hockey

no need to close an input

parent c49841e6
...@@ -9,8 +9,7 @@ ...@@ -9,8 +9,7 @@
<li data-dojo-type="dojox.mvc.Group" data-dojo-props="ref: '#{this.index}'"> <li data-dojo-type="dojox.mvc.Group" data-dojo-props="ref: '#{this.index}'">
<div class="todo"> <div class="todo">
<input class="check" data-dojo-type="todo.form.CheckBox" data-dojo-props='ref: "isDone"' style="display:inline-block" > <input class="check" data-dojo-type="todo.form.CheckBox" data-dojo-props='ref: "isDone"' style="display:inline-block" >
</input> <div class="todo-content dijitInline" data-dojo-type="dijit.InlineEditBox"
<div class="todo-content dijitInline" data-dojo-type="dijit.InlineEditBox"
data-dojo-props='ref: "todo_text", editor:"dijit.form.TextBox", autosave:true, width:"420px", style:"width:420px;"'></div> data-dojo-props='ref: "todo_text", editor:"dijit.form.TextBox", autosave:true, width:"420px", style:"width:420px;"'></div>
<span class="todo-destroy" data-model-id="#{this.index}"> <span class="todo-destroy" data-model-id="#{this.index}">
...@@ -27,7 +26,7 @@ ...@@ -27,7 +26,7 @@
</span> </span>
<span class="todo-clear"> <span class="todo-clear">
<a href="#" data-dojo-attach-event="onclick:removeCompletedItems"> <a href="#" data-dojo-attach-event="onclick:removeCompletedItems">
Clear Clear
<span class="number-done" data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.complete" ></span> <span class="number-done" data-dojo-type="dojox.mvc.Output" data-dojo-props="ref: this.model.complete" ></span>
completed items completed items
</a> </a>
......
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