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

Side by Side Diff: samples/third_party/todomvc/web/todo_row.html

Issue 27518006: Practically remove boot.js, adds the initialization from the Dart side of (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a 3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file. 4 BSD-style license that can be found in the LICENSE file.
5 --> 5 -->
6 <meta charset="utf-8">
6 <link rel="import" href="editable_label.html"> 7 <link rel="import" href="editable_label.html">
7 <polymer-element name="todo-row" extends="li"> 8 <polymer-element name="todo-row" extends="li">
8 <template> 9 <template>
9 <style> 10 <style>
10 .todo-item { 11 .todo-item {
11 position: relative; 12 position: relative;
12 font-size: 24px; 13 font-size: 24px;
13 border-bottom: 1px dotted #ccc; 14 border-bottom: 1px dotted #ccc;
14 } 15 }
15 16
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 } 118 }
118 </style> 119 </style>
119 <div class="todo-item"> 120 <div class="todo-item">
120 <input class="toggle" type="checkbox" checked="{{todo.done}}"> 121 <input class="toggle" type="checkbox" checked="{{todo.done}}">
121 <editable-label id="label" value="{{todo.task}}"></editable-label> 122 <editable-label id="label" value="{{todo.task}}"></editable-label>
122 <button class="destroy" on-click="removeTodo"></button> 123 <button class="destroy" on-click="removeTodo"></button>
123 </div> 124 </div>
124 </template> 125 </template>
125 <script type="application/dart" src="todo_row.dart"></script> 126 <script type="application/dart" src="todo_row.dart"></script>
126 </polymer-element> 127 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698