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

Unified Diff: client/fling/dist/runtime/apps/adminz/adminz.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 | « client/base/DomWrapper.dart ('k') | client/html/benchmarks/dromaeo/Dromaeo.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/fling/dist/runtime/apps/adminz/adminz.dart
diff --git a/client/fling/dist/runtime/apps/adminz/adminz.dart b/client/fling/dist/runtime/apps/adminz/adminz.dart
index 4176a592a6673d424e2498acc201260f60df5d09..f2154ade05fde7505db8f60fe427de1ff5540bab 100644
--- a/client/fling/dist/runtime/apps/adminz/adminz.dart
+++ b/client/fling/dist/runtime/apps/adminz/adminz.dart
@@ -84,8 +84,8 @@ class Adminz {
return;
// Put up refresh UI.
- notify = document.createElement('div');
- status = document.createElement('div');
+ notify = new Element.tag('div');
+ status = new Element.tag('div');
notify.style.cssText = 'position:absolute;left:0;right:0;bottom:0;z-index:10000;background:#000;opacity:0.8;height:0;-webkit-transition:height 300ms ease-in-out;';
status.style.cssText = 'padding:20px 40px;color:#fff;font-family:Helvetica,Arial;font-size:24pt;';
« no previous file with comments | « client/base/DomWrapper.dart ('k') | client/html/benchmarks/dromaeo/Dromaeo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698