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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/curly_block.html

Issue 299823004: Upgrade Observatory to Polymer 0.10.x (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <polymer-element name="curly-block"> 1 <polymer-element name="curly-block">
2 <template> 2 <template>
3 <style> 3 <style>
4 .idle { 4 .idle {
5 display: inline-block; 5 display: inline-block;
6 color: #0489c3; 6 color: #0489c3;
7 cursor: pointer; 7 cursor: pointer;
8 } 8 }
9 .busy { 9 .busy {
10 display: inline-block; 10 display: inline-block;
(...skipping 18 matching lines...) Expand all
29 29
30 <template if="{{ !expanded }}"> 30 <template if="{{ !expanded }}">
31 <template if="{{ busy }}"> 31 <template if="{{ busy }}">
32 {<div class="busy">&nbsp;&nbsp;&#8862;&nbsp;&nbsp;</div>} 32 {<div class="busy">&nbsp;&nbsp;&#8862;&nbsp;&nbsp;</div>}
33 </template> 33 </template>
34 <template if="{{ !busy }}"> 34 <template if="{{ !busy }}">
35 {<a on-click="{{ toggleExpand }}"><div class="idle">&nbsp;&nbsp;&#8862;& nbsp;&nbsp;</div></a>} 35 {<a on-click="{{ toggleExpand }}"><div class="idle">&nbsp;&nbsp;&#8862;& nbsp;&nbsp;</div></a>}
36 </template> 36 </template>
37 </template> 37 </template>
38 </template> 38 </template>
39 <script type="application/dart" src="curly_block.dart"></script> 39 <script type="application/dart;component=1" src="curly_block.dart"></script>
40 </polymer-element> 40 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698