Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: samples/third_party/todomvc/web/index.html

Issue 182193002: [polymer] interop with polymer-element and polymer.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698