OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
4 for details. All rights reserved. Use of this source code is governed by a | 4 for details. All rights reserved. Use of this source code is governed by a |
5 BSD-style license that can be found in the LICENSE file. | 5 BSD-style license that can be found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 <link rel="import" href="editable_label.html"> | 10 <link rel="import" href="editable_label.html"> |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 .todo-item .toggle { | 117 .todo-item .toggle { |
118 background: none; | 118 background: none; |
119 } | 119 } |
120 #todo-item .toggle { | 120 #todo-item .toggle { |
121 height: 40px; | 121 height: 40px; |
122 } | 122 } |
123 } | 123 } |
124 </style> | 124 </style> |
125 <div class="todo-item"> | 125 <div class="todo-item"> |
126 <input class="toggle" type="checkbox" checked="{{todo.done}}"> | 126 <input class="toggle" type="checkbox" checked="{{todo.done}}"> |
127 <div is="editable-label" id="label" value="{{todo.task}}"></div> | 127 <editable-label id="label" value="{{todo.task}}"></editable-label> |
128 <button class="destroy" on-click="removeTodo"></button> | 128 <button class="destroy" on-click="removeTodo"></button> |
129 </div> | 129 </div> |
130 </template> | 130 </template> |
131 <script type="application/dart" src="todo_row.dart"></script> | 131 <script type="application/dart" src="todo_row.dart"></script> |
132 </polymer-element> | 132 </polymer-element> |
133 </body> | 133 </body> |
134 </html> | 134 </html> |
OLD | NEW |