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

Unified Diff: src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html

Issue 26922002: removing Web UI tutorials, updating remaining 4 to current release, + review pass (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: provided redirects for web UI tutes, put deprecated notice in code lab 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 side-by-side diff with in-line comments
Download patch
Index: src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html
diff --git a/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html b/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html
index 288236916e602b64d87eb4e041515ffc6c3b3f5b..1d45cf6918756385041b156a2e990f9632618dc3 100644
--- a/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html
+++ b/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/count_down.html
@@ -11,12 +11,12 @@
</head>
<body><script src="packages/shadow_dom/shadow_dom.debug.js"></script>
<script src="packages/browser/interop.js"></script>
-<polymer-element name="x-milestone" attributes="milestone">
+<polymer-element name="tute-milestone" attributes="milestone">
<template>
<span>{{milestone.timeRemainingAsString}}</span> <button on-click="removeMilestone">-</button>
</template>
- </polymer-element><polymer-element name="x-count-down">
+ </polymer-element><polymer-element name="tute-count-down">
<template>
<div>
@@ -31,8 +31,8 @@
<template bind="" if="{{appObj.hazMilestones}}">
<template repeat="{{appObj.milestones}}">
<li>
- <x-milestone milestone="{{}}">
- </x-milestone>
+ <tute-milestone milestone="{{}}">
+ </tute-milestone>
</li>
</template>
</template>
@@ -50,7 +50,7 @@
<h1>Count down</h1>
<!-- Insert the CountDownComponent, implemented in xcountdown.html & xcountdown.dart -->
- <x-count-down id="count_down"></x-count-down>
+ <tute-count-down id="count_down"></tute-count-down>
<!--<script type="application/dart" src="count_down.dart"></script>-->

Powered by Google App Engine
This is Rietveld 408576698