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

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

Issue 224373003: Detect concurrent edits. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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
« no previous file with comments | « dart/site/try/src/interaction_manager.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/site/try/src/ui.dart
diff --git a/dart/site/try/src/ui.dart b/dart/site/try/src/ui.dart
index d8a93a648bd6c70589efdd67e5794df4134b8fed..e9b66d654cc20358a3d4f3c20609407de9114d8a 100644
--- a/dart/site/try/src/ui.dart
+++ b/dart/site/try/src/ui.dart
@@ -48,6 +48,7 @@ import 'compilation.dart' show
InteractionManager interaction;
DivElement mainEditorPane;
+DivElement statusDiv;
PreElement outputDiv;
DivElement hackDiv;
IFrameElement outputFrame;
@@ -130,6 +131,13 @@ buildUI() {
..position = 'absolute';
inputWrapper.append(inputHeader);
+ statusDiv = new DivElement();
+ statusDiv.style
+ ..left = '0px'
+ ..top = '0px'
+ ..position = 'absolute';
+ inputWrapper.append(statusDiv);
+
outputFrame =
makeOutputFrame(
Url.createObjectUrl(new Blob([''], 'application/javascript')));
« no previous file with comments | « dart/site/try/src/interaction_manager.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698