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

Unified Diff: example/todomvc/web/index.html

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: example/todomvc/web/index.html
diff --git a/example/todomvc/web/index.html b/example/todomvc/web/index.html
index b52ed99a8514277b573bc5d047abc8d6f4a7718b..e0baf5f991a069b39d0faf3075361a496508fdf2 100644
--- a/example/todomvc/web/index.html
+++ b/example/todomvc/web/index.html
@@ -9,16 +9,13 @@ BSD-style license that can be found in the LICENSE file.
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="import" href="app.html">
+ <script src='packages/html_import/html_import.min.js'></script>
+ <script src='packages/polymer/boot.js'></script>
Jennifer Messerly 2013/07/27 02:18:44 probably we should include this in boot.js?
Siggi Cherem (dart-lang) 2013/07/30 00:10:29 do you mean to include html_import.min.js? If so,
<link rel="stylesheet" href="base.css">
<title>Dart • TodoMVC</title>
</head>
<body>
<todo-app></todo-app>
- <script type="application/dart">
- import 'package:mdv/mdv.dart' as mdv;
- main() {
- mdv.initialize();
- }
- </script>
+ <script type="application/dart"> main() { } </script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698