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

Unified Diff: dart/site/try/src/editor.dart

Issue 345553008: Fix issues that broke editing on browsers without Shadow DOM support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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: dart/site/try/src/editor.dart
diff --git a/dart/site/try/src/editor.dart b/dart/site/try/src/editor.dart
index 615a8539aec63a83cf4fbb88e6228b433286dce3..b4357789182892afe3f0be853d81913dde0f65fd 100644
--- a/dart/site/try/src/editor.dart
+++ b/dart/site/try/src/editor.dart
@@ -274,6 +274,6 @@ diagnostic(text, tip) {
}
return new AnchorElement()
..classes.add('diagnostic')
- ..append(text)
- ..append(tip);
+ ..append(tip)
+ ..append(text);
}

Powered by Google App Engine
This is Rietveld 408576698