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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 261853011: Suppress some polymer runtime warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 7 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: runtime/bin/vmservice/client/deployed/web/index_devtools.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index_devtools.html b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
index 104fd76a4560a72a86d58b424fe29239adead841..55535497c69048fb5f72fc99e4512b27da8da389 100644
--- a/runtime/bin/vmservice/client/deployed/web/index_devtools.html
+++ b/runtime/bin/vmservice/client/deployed/web/index_devtools.html
@@ -451,6 +451,32 @@
</polymer-element>
+<polymer-element name="eval-link">
+ <template>
+ <style>
+ .idle {
+ color: #0489c3;
+ cursor: pointer;
+ }
+ .busy {
+ color: #aaa;
+ cursor: wait;
+ }
+ </style>
+
+ <template if="{{ busy }}">
+ <span class="busy">[evaluate]</span>
+ </template>
+ <template if="{{ !busy }}">
+ <span class="idle"><a on-click="{{ evalNow }}">[evaluate]</a></span>
+ </template>
+ <template if="{{ result != null }}">
+ = <instance-ref ref="{{ result }}"></instance-ref>
+ </template>
+
+ </template>
+
+</polymer-element>
<polymer-element name="field-ref" extends="service-ref">
<template>
<link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css">
@@ -842,32 +868,6 @@
</template>
</polymer-element>
-<polymer-element name="eval-link">
- <template>
- <style>
- .idle {
- color: #0489c3;
- cursor: pointer;
- }
- .busy {
- color: #aaa;
- cursor: wait;
- }
- </style>
-
- <template if="{{ busy }}">
- <span class="busy">[evaluate]</span>
- </template>
- <template if="{{ !busy }}">
- <span class="idle"><a on-click="{{ evalNow }}">[evaluate]</a></span>
- </template>
- <template if="{{ result != null }}">
- = <instance-ref ref="{{ result }}"></instance-ref>
- </template>
-
- </template>
-
-</polymer-element>
<polymer-element name="field-view" extends="observatory-element">
<template>
<link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css">

Powered by Google App Engine
This is Rietveld 408576698