| Index: samples/third_party/todomvc/web/elements/td_todos.html
|
| diff --git a/samples/third_party/todomvc/web/elements/td_todos.html b/samples/third_party/todomvc/web/elements/td_todos.html
|
| index ef3ac806050ed4ff784118b659e750d03117c3e5..4d84f60b51a54dff26c8a44c487a74714e44316b 100644
|
| --- a/samples/third_party/todomvc/web/elements/td_todos.html
|
| +++ b/samples/third_party/todomvc/web/elements/td_todos.html
|
| @@ -1,4 +1,4 @@
|
| -<link rel="import" href="../lib-elements/polymer_selector.html">
|
| +<link rel="import" href="../lib-elements/polymer-selector.html">
|
| <link rel="import" href="../lib-elements/simple_router.html">
|
| <link rel="import" href="td_input.html">
|
| <link rel="import" href="td_item.html">
|
| @@ -29,13 +29,13 @@
|
| <span id="todo-count"><strong>{{model.activeCount}}</strong>
|
| {{model.activeItemWord}} left</span>
|
| <polymer-selector id="filters" selected="{{activeRoute}}">
|
| - <li name="all">
|
| + <li label="all">
|
| <a href="{{baseUri}}#/">All</a>
|
| </li>
|
| - <li name="active">
|
| + <li label="active">
|
| <a href="{{baseUri}}#/active">Active</a>
|
| </li>
|
| - <li name="completed">
|
| + <li label="completed">
|
| <a href="{{baseUri}}#/completed">Completed</a>
|
| </li>
|
| </polymer-selector>
|
|
|