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

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

Issue 342513004: Visual refresh of allocation profile page (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 <head>
2 <link rel="import" href="observatory_element.html">
3 </head>
4 <polymer-element name="collapsible-content" extends="observatory-element">
5 <template>
6 <div class="well row">
7 <a on-click="toggleDisplay"
8 class="btn muted unselectable">
9 Raw message... <i class="{{ iconClass }}"></i>
10 </a>
11 <div style="display: {{ displayValue }}" class="well">
12 <content></content>
13 </div>
14 </div>
15 </template>
16 <script type="application/dart" src="collapsible_content.dart"></script>
17 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698