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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 4 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
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="instance_ref.html"> 2 <link rel="import" href="instance_ref.html">
3 <link rel="import" href="error_ref.html"> 3 <link rel="import" href="error_ref.html">
4 <link rel="import" href="observatory_element.html">
5 4
6 <polymer-element name="eval-link" extends="observatory-element"> 5
6 <polymer-element name="eval-link">
7 <template> 7 <template>
8 <style> 8 <style>
9 .idle { 9 .idle {
10 color: #0489c3; 10 color: #0489c3;
11 cursor: pointer; 11 cursor: pointer;
12 } 12 }
13 .busy { 13 .busy {
14 color: #aaa; 14 color: #aaa;
15 cursor: wait; 15 cursor: wait;
16 } 16 }
(...skipping 10 matching lines...) Expand all
27 </template> 27 </template>
28 <template if="{{ error == null }}"> 28 <template if="{{ error == null }}">
29 <template if="{{ result != null }}"> 29 <template if="{{ result != null }}">
30 = <any-service-ref ref="{{ result }}"></any-service-ref> 30 = <any-service-ref ref="{{ result }}"></any-service-ref>
31 </template> 31 </template>
32 </template> 32 </template>
33 </template> 33 </template>
34 </polymer-element> 34 </polymer-element>
35 35
36 <script type="application/dart" src="eval_link.dart"></script> 36 <script type="application/dart" src="eval_link.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/eval_box.html ('k') | runtime/observatory/lib/src/elements/field_ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698