| 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>
|
|
|