| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html lang="en"> | 2 <html lang="en"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 6 <title>Polymer.dart • TodoMVC</title> | 6 <title>Polymer.dart • TodoMVC</title> |
| 7 <link rel="stylesheet" href="app/app.css"> | 7 <link rel="stylesheet" href="app/app.css"> |
| 8 <link rel="import" href="packages/polymer/polymer.html"> |
| 8 <link rel="import" href="lib-elements/polymer_localstorage.html"> | 9 <link rel="import" href="lib-elements/polymer_localstorage.html"> |
| 9 <link rel="import" href="elements/td_model.html"> | 10 <link rel="import" href="elements/td_model.html"> |
| 10 <link rel="import" href="elements/td_todos.html"> | 11 <link rel="import" href="elements/td_todos.html"> |
| 11 <script type="application/dart">export 'package:polymer/init.dart';</script> | 12 <script type="application/dart">export 'package:polymer/init.dart';</script> |
| 12 </head> | 13 </head> |
| 13 <body> | 14 <body> |
| 14 <header> | 15 <header> |
| 15 <h1>todos</h1> | 16 <h1>todos</h1> |
| 16 </header> | 17 </header> |
| 17 <polymer-localstorage id="storage" name="todos-polymer"> | 18 <polymer-localstorage id="storage" name="todos-polymer"> |
| 18 </polymer-localstorage> | 19 </polymer-localstorage> |
| 19 <td-model id="model" storageId="storage"></td-model> | 20 <td-model id="model" storageId="storage"></td-model> |
| 20 <td-todos modelId="model"></td-todos> | 21 <td-todos modelId="model"></td-todos> |
| 21 <footer id="info"> | 22 <footer id="info"> |
| 22 <p>Double-click to edit a todo</p> | 23 <p>Double-click to edit a todo</p> |
| 23 <p>Created by <a href="https://www.dartlang.org/polymer-dart/"> | 24 <p>Created by <a href="https://www.dartlang.org/polymer-dart/"> |
| 24 The Polymer.dart Authors</a></p> | 25 The Polymer.dart Authors</a></p> |
| 25 <p>This example was built using a pre-alpha version of Polymer.dart.</p> | 26 <p>This example was built using a pre-alpha version of Polymer.dart.</p> |
| 26 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> | 27 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> |
| 27 </footer> | 28 </footer> |
| 28 </body> | 29 </body> |
| 29 </html> | 30 </html> |
| OLD | NEW |