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

Unified Diff: samples/third_party/todomvc/web/index.html

Issue 60353013: Update TodoMVC based on https://github.com/polymer/todomvc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix pubspecs Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: samples/third_party/todomvc/web/index.html
diff --git a/samples/third_party/todomvc/web/index.html b/samples/third_party/todomvc/web/index.html
index 160f2a865bd5341bd56407e90d67a215a265b0c9..5c98d526725b44436e07562cccb49a24e8097128 100644
--- a/samples/third_party/todomvc/web/index.html
+++ b/samples/third_party/todomvc/web/index.html
@@ -1,20 +1,29 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-for details. All rights reserved. Use of this source code is governed by a
-BSD-style license that can be found in the LICENSE file.
--->
+<!doctype html>
<html lang="en">
-<head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <link rel="import" href="app.html">
- <script type="application/dart">export 'package:polymer/init.dart';</script>
- <script src="packages/browser/dart.js"></script>
- <link rel="stylesheet" href="base.css">
- <title>Dart • TodoMVC</title>
-</head>
-<body>
- <todo-app></todo-app>
-</body>
+ <head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <title>Polymer.dart • TodoMVC</title>
+ <link rel="stylesheet" href="app/app.css">
+ <link rel="import" href="lib-elements/polymer_localstorage.html">
+ <link rel="import" href="elements/td_model.html">
+ <link rel="import" href="elements/td_todos.html">
+ <script type="application/dart">export 'package:polymer/init.dart';</script>
+ </head>
+ <body>
+ <header>
+ <h1>todos</h1>
+ </header>
+ <polymer-localstorage id="storage" name="todos-polymer">
+ </polymer-localstorage>
+ <td-model id="model" storageId="storage"></td-model>
+ <td-todos modelId="model"></td-todos>
+ <footer id="info">
+ <p>Double-click to edit a todo</p>
+ <p>Created by <a href="https://www.dartlang.org/polymer-dart/">
+ The Polymer.dart Authors</a></p>
+ <p>This example was built using a pre-alpha version of Polymer.dart.</p>
+ <p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
+ </footer>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698