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

Unified Diff: example/todomvc/web/todo_row.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/todo_row.html
diff --git a/example/todomvc/web/todo_row.html b/example/todomvc/web/todo_row.html
index 38b1b89d8f72fb76797b7c14ed7b164f0e5236af..ed9c4414536b838e670c1028ea99cdefc13f6b55 100644
--- a/example/todomvc/web/todo_row.html
+++ b/example/todomvc/web/todo_row.html
@@ -10,7 +10,7 @@ BSD-style license that can be found in the LICENSE file.
<link rel="import" href="editable_label.html">
</head>
<body>
-<element name="todo-row" extends="li" apply-author-styles attributes="todo">
+<polymer-element name="todo-row" extends="li" attributes="todo">
<template>
<style scoped>
.todo-item {
@@ -129,6 +129,6 @@ ShadowRoot because it crosses the shadow boundary.
</div>
</template>
<script type="application/dart" src="todo_row.dart"></script>
-</element>
+</polymer-element>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698