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

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

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
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 4
5 <polymer-element name="eval-link"> 5 <polymer-element name="eval-link">
6 <template> 6 <template>
7 <style> 7 <style>
8 .idle { 8 .idle {
9 color: #0489c3; 9 color: #0489c3;
10 cursor: pointer; 10 cursor: pointer;
(...skipping 10 matching lines...) Expand all
21 <template if="{{ !busy }}"> 21 <template if="{{ !busy }}">
22 <span class="idle"><a on-click="{{ evalNow }}">{{ label }}</a></span> 22 <span class="idle"><a on-click="{{ evalNow }}">{{ label }}</a></span>
23 </template> 23 </template>
24 <template if="{{ result != null }}"> 24 <template if="{{ result != null }}">
25 = <any-service-ref ref="{{ result }}"></any-service-ref> 25 = <any-service-ref ref="{{ result }}"></any-service-ref>
26 </template> 26 </template>
27 </template> 27 </template>
28 </polymer-element> 28 </polymer-element>
29 29
30 <script type="application/dart" src="eval_link.dart"></script> 30 <script type="application/dart" src="eval_link.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698