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

Side by Side Diff: samples/third_party/todomvc_performance/web/elements/td_item.html

Issue 1576153002: Remove the Dromaeo and TodoMVC samples. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
(Empty)
1 <link rel="import" href="td_input.html">
2 <polymer-element name="td-item" extends="li" on-blur="{{commitAction}}">
3 <template>
4 <link rel="stylesheet" href="td_item.css">
5 <div class="view {{ {'completed': item.completed, 'editing': editing} }}"
6 hidden?="{{editing}}" on-dblclick="{{editAction}}">
7 <input type="checkbox" class="toggle" checked="{{item.completed}}"
8 on-click="{{itemChangeAction}}">
9 <label>{{item.title}}</label>
10 <button class="destroy" on-click="{{destroyAction}}"></button>
11 </div>
12 <input is="td-input" id="edit" class="edit" value="{{item.title}}"
13 hidden?="{{!editing}}" on-td-input-commit="{{commitAction}}"
14 on-td-input-cancel="{{cancelAction}}">
15 </template>
16 <script type="application/dart" src="td_item.dart"></script>
17 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698