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

Side by Side Diff: runtime/observatory/lib/src/elements/curly_block.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
(Empty)
1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2
3 <polymer-element name="curly-block">
4 <template>
5 <style>
6 .idle {
7 display: inline-block;
8 color: #0489c3;
9 cursor: pointer;
10 }
11 .busy {
12 display: inline-block;
13 color: white;
14 cursor: wait;
15 }
16 </style>
17 <template if="{{ expanded }}">
18 <template if="{{ busy }}">
19 {<div class="busy">&nbsp;&nbsp;&#8863;&nbsp;&nbsp;</div>
20 <br>
21 <content></content>
22 }
23 </template>
24 <template if="{{ !busy }}">
25 {<a on-click="{{ toggleExpand }}"><div class="idle">&nbsp;&nbsp;&#8863;& nbsp;&nbsp;</div></a>
26 <br>
27 <content></content>
28 }
29 </template>
30 </template>
31
32 <template if="{{ !expanded }}">
33 <template if="{{ busy }}">
34 {<div class="busy">&nbsp;&nbsp;&#8862;&nbsp;&nbsp;</div>}
35 </template>
36 <template if="{{ !busy }}">
37 {<a on-click="{{ toggleExpand }}"><div class="idle">&nbsp;&nbsp;&#8862;& nbsp;&nbsp;</div></a>}
38 </template>
39 </template>
40 </template>
41 </polymer-element>
42
43 <script type="application/dart" src="curly_block.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/curly_block.dart ('k') | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698