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

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

Issue 19497002: Reducing the amount of code we generate in the compiler: We still continue (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/app.html
diff --git a/example/todomvc/web/app.html b/example/todomvc/web/app.html
index ee3d4f8e73bd452ab9cea3f4c4e0c8bb0bd73a01..2a492f91fa9f634fe62ba92eab5a2ba2b02547a5 100644
--- a/example/todomvc/web/app.html
+++ b/example/todomvc/web/app.html
@@ -11,7 +11,7 @@ BSD-style license that can be found in the LICENSE file.
<link rel="import" href="todo_row.html">
</head>
<body>
-<element name="todo-app" apply-author-styles>
+<polymer-element name="todo-app">
<template>
<section id="todoapp">
<header id="header">
@@ -59,6 +59,6 @@ BSD-style license that can be found in the LICENSE file.
</footer>
</template>
<script type="application/dart" src="app.dart"></script>
-</element>
+</polymer-element>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698