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

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

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: merge 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 side-by-side diff with in-line comments
Download patch
Index: src/site/docs/tutorials/indexeddb/examples/count_down/out/web/milestone.dart
diff --git a/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/milestone.dart b/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/milestone.dart
index d2f3e062a2e20580ac352203952f4fd3a9fdc7cf..46d067c6caa6c9ab4d5f5411369da45b1eb2d80e 100644
--- a/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/milestone.dart
+++ b/src/site/docs/tutorials/indexeddb/examples/count_down/out/web/milestone.dart
@@ -147,7 +147,6 @@ class MilestoneStore {
var transaction = _db.transaction(MILESTONE_STORE, 'readwrite');
var objectStore = transaction.objectStore(MILESTONE_STORE);
-
objectStore.add(milestoneAsMap).then((addedKey) {
// NOTE! The key cannot be used until the transaction completes.
milestone.dbKey = addedKey;

Powered by Google App Engine
This is Rietveld 408576698