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

Side by Side Diff: src/site/docs/tutorials/indexeddb/examples/count_down/out/web/xcountdown.html

Issue 26542002: edit pass on T3,4,5, updated images (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: merging with master 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <link rel="import" href="xmilestone.html">
6 </head>
7 <body>
8 <polymer-element name="x-count-down">
9 <template>
10
11 <div>
12 <p>Enter a milestone</p>
13
14 <input type="text" name="newMilestoneName" value="{{newMilestoneName }}">
15 <input type="date" name="newMilestoneDate" value="{{newMilestoneDate }}">
16 <input type="time" name="newMilestoneTime" value="{{newMilestoneTime }}">
17 <button on-click="addMilestone" id="addbutton">+</button>
18
19 <ul>
20 <template bind if='{{appObj.hazMilestones}}'>
21 <template repeat="{{appObj.milestones}}">
22 <li>
23 <x-milestone milestone="{{}}">
24 </x-milestone>
25 </li>
26 </template>
27 </template>
28 </ul>
29 </div>
30 <div>
31 <button on-click="clear" id="clearbutton">Clear</button>
32 <p style="color:red"> {{errorMsg}} </p>
33 </div>
34
35 </template>
36
37 <script type="application/dart" src="xcountdown.dart"></script>
38 </polymer-element>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698