| OLD | NEW |
| (Empty) | |
| 1 <link rel="import" href="td_input.html"> |
| 2 <polymer-element name="td-item" extends="li" attributes="item editing" |
| 3 on-blur="{{commitAction}}"> |
| 4 <template> |
| 5 <link rel="stylesheet" href="td_item.css"> |
| 6 <div class="view {{ {'completed': item.completed, 'editing': editing} }}" |
| 7 hidden?="{{editing}}" on-dblclick="{{editAction}}"> |
| 8 <input type="checkbox" class="toggle" checked="{{item.completed}}" |
| 9 on-click="{{itemChangeAction}}"> |
| 10 <label>{{item.title}}</label> |
| 11 <button class="destroy" on-click="{{destroyAction}}"></button> |
| 12 </div> |
| 13 <input is="td-input" id="edit" class="edit" value="{{item.title}}" |
| 14 hidden?="{{!editing}}" on-td-input-commit="{{commitAction}}" |
| 15 on-td-input-cancel="{{cancelAction}}"> |
| 16 </template> |
| 17 <script type="application/dart" src="td_item.dart"></script> |
| 18 </polymer-element> |
| OLD | NEW |