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

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

Issue 331153002: Version 1.5.0-dev.4.13 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 6 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 <script src="packages/web_components/platform.js"></script>
9 <script src="packages/web_components/dart_support.js"></script>
9 <link rel="import" href="lib-elements/polymer_localstorage.html"> 10 <link rel="import" href="lib-elements/polymer_localstorage.html">
10 <link rel="import" href="elements/td_model.html"> 11 <link rel="import" href="elements/td_model.html">
11 <link rel="import" href="elements/td_todos.html"> 12 <link rel="import" href="elements/td_todos.html">
12 <script type="application/dart">export 'package:polymer/init.dart';</script> 13 <script type="application/dart">export 'package:polymer/init.dart';</script>
13 </head> 14 </head>
14 <body> 15 <body>
15 <header> 16 <header>
16 <h1>todos</h1> 17 <h1>todos</h1>
17 </header> 18 </header>
18 <polymer-localstorage id="storage" name="todos-polymer"> 19 <polymer-localstorage id="storage" name="todos-polymer">
19 </polymer-localstorage> 20 </polymer-localstorage>
20 <td-model id="model" storageId="storage"></td-model> 21 <td-model id="model" storageId="storage"></td-model>
21 <td-todos modelId="model"></td-todos> 22 <td-todos modelId="model"></td-todos>
22 <footer id="info"> 23 <footer id="info">
23 <p>Double-click to edit a todo</p> 24 <p>Double-click to edit a todo</p>
24 <p>Created by <a href="https://www.dartlang.org/polymer-dart/"> 25 <p>Created by <a href="https://www.dartlang.org/polymer-dart/">
25 The Polymer.dart Authors</a></p> 26 The Polymer.dart Authors</a></p>
26 <p>This example was built using a pre-alpha version of Polymer.dart.</p> 27 <p>This example was built using a pre-alpha version of Polymer.dart.</p>
27 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> 28 <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
28 </footer> 29 </footer>
29 </body> 30 </body>
30 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698