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

Side by Side Diff: example/todomvc/web/todo_row.html

Issue 22962005: Merge pull request #581 from kevmoo/polymer (Closed) Base URL: https://github.com/dart-lang/web-ui.git@polymer
Patch Set: Created 7 years, 4 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 unified diff | Download patch
« no previous file with comments | « example/todomvc/web/model.dart ('k') | lib/boot.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 for details. All rights reserved. Use of this source code is governed by a 4 for details. All rights reserved. Use of this source code is governed by a
5 BSD-style license that can be found in the LICENSE file. 5 BSD-style license that can be found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <link rel="import" href="editable_label.html"> 10 <link rel="import" href="editable_label.html">
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 .todo-item .toggle { 117 .todo-item .toggle {
118 background: none; 118 background: none;
119 } 119 }
120 #todo-item .toggle { 120 #todo-item .toggle {
121 height: 40px; 121 height: 40px;
122 } 122 }
123 } 123 }
124 </style> 124 </style>
125 <div class="todo-item"> 125 <div class="todo-item">
126 <input class="toggle" type="checkbox" checked="{{todo.done}}"> 126 <input class="toggle" type="checkbox" checked="{{todo.done}}">
127 <div is="editable-label" id="label" value="{{todo.task}}"></div> 127 <editable-label id="label" value="{{todo.task}}"></editable-label>
128 <button class="destroy" on-click="removeTodo"></button> 128 <button class="destroy" on-click="removeTodo"></button>
129 </div> 129 </div>
130 </template> 130 </template>
131 <script type="application/dart" src="todo_row.dart"></script> 131 <script type="application/dart" src="todo_row.dart"></script>
132 </polymer-element> 132 </polymer-element>
133 </body> 133 </body>
134 </html> 134 </html>
OLDNEW
« no previous file with comments | « example/todomvc/web/model.dart ('k') | lib/boot.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698