OLD | NEW |
1 <link rel="import" href="../lib-elements/polymer-selector.html"> | 1 <link rel="import" href="../lib-elements/polymer-selector.html"> |
2 <link rel="import" href="../lib-elements/simple_router.html"> | 2 <link rel="import" href="../lib-elements/simple_router.html"> |
3 <link rel="import" href="td_input.html"> | 3 <link rel="import" href="td_input.html"> |
4 <link rel="import" href="td_item.html"> | 4 <link rel="import" href="td_item.html"> |
5 | 5 |
6 <polymer-element name="td-todos"> | 6 <polymer-element name="td-todos"> |
7 <template> | 7 <template> |
8 <link rel="stylesheet" href="td_todos.css"> | 8 <link rel="stylesheet" href="td_todos.css"> |
9 <simple-router on-route="{{routeAction}}"></simple-router> | 9 <simple-router on-route="{{routeAction}}"></simple-router> |
10 <section id="todoapp"> | 10 <section id="todoapp"> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 <button hidden?="{{model.completedCount == 0}}" id="clear-completed" | 42 <button hidden?="{{model.completedCount == 0}}" id="clear-completed" |
43 on-click="{{clearCompletedAction}}">Clear completed | 43 on-click="{{clearCompletedAction}}">Clear completed |
44 ({{model.completedCount}})</button> | 44 ({{model.completedCount}})</button> |
45 </footer> | 45 </footer> |
46 </section> | 46 </section> |
47 </template> | 47 </template> |
48 | 48 |
49 <script type="application/dart" src="td_todos.dart"></script> | 49 <script type="application/dart" src="td_todos.dart"></script> |
50 | 50 |
51 </polymer-element> | 51 </polymer-element> |
OLD | NEW |