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

Side by Side Diff: runtime/observatory/lib/src/elements/eval_link.html

Issue 2310003004: Removed polymer & mirror from Observatory (Closed)
Patch Set: Fixed crash in heap-map page Created 4 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2
3 <polymer-element name="eval-link">
4 <template>
5 <style>
6 .idle {
7 color: #0489c3;
8 cursor: pointer;
9 }
10 .busy {
11 color: #aaa;
12 cursor: wait;
13 }
14 </style>
15
16 <template if="{{ busy }}">
17 <span class="busy">{{ label }}</span>
18 </template>
19 <template if="{{ !busy }}">
20 <span class="idle"><a on-click="{{ evalNow }}">{{ label }}</a></span>
21 </template>
22 <template if="{{ error != null }}">
23 = <span style="color:red">{{ error }}</span>
24 </template>
25 <template if="{{ error == null }}">
26 <template if="{{ result != null }}">
27 = <any-service-ref ref="{{ result }}"></any-service-ref>
28 </template>
29 </template>
30 </template>
31 </polymer-element>
32
33 <script type="application/dart" src="eval_link.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/eval_link.dart ('k') | runtime/observatory/lib/src/elements/field_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698