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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index.html

Issue 167363002: Add refresh button to stack trace page. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 10 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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 2
3 3
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
6 6
7 <title>Dart VM Observatory</title> 7 <title>Dart VM Observatory</title>
8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
9 9
10 10
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 </tr> 716 </tr>
717 </tbody></table> 717 </tbody></table>
718 </div> 718 </div>
719 </div> 719 </div>
720 720
721 </template> 721 </template>
722 722
723 </polymer-element> 723 </polymer-element>
724 <polymer-element name="stack-trace" extends="observatory-element"> 724 <polymer-element name="stack-trace" extends="observatory-element">
725 <template> 725 <template>
726 <button type="button" on-click="{{refresh}}">Refresh</button>
726 <template if="{{ trace['members'].isEmpty }}"> 727 <template if="{{ trace['members'].isEmpty }}">
727 <div class="col-md-1"></div> 728 <div class="col-md-1"></div>
728 <div class="col-md-11"> 729 <div class="col-md-11">
729 <em>No stack</em> 730 <em>No stack</em>
730 </div> 731 </div>
731 </template> 732 </template>
732 <template if="{{ trace['members'].isNotEmpty }}"> 733 <template if="{{ trace['members'].isNotEmpty }}">
733 <ul class="list-group"> 734 <ul class="list-group">
734 <template repeat="{{ frame in trace['members'] }}"> 735 <template repeat="{{ frame in trace['members'] }}">
735 <li class="list-group-item"> 736 <li class="list-group-item">
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 </template> 879 </template>
879 <template if="{{ app.locationManager.profile == false }}"> 880 <template if="{{ app.locationManager.profile == false }}">
880 <response-viewer app="{{ app }}"></response-viewer> 881 <response-viewer app="{{ app }}"></response-viewer>
881 </template> 882 </template>
882 </template> 883 </template>
883 884
884 </polymer-element> 885 </polymer-element>
885 <observatory-application></observatory-application> 886 <observatory-application></observatory-application>
886 887
887 </body></html> 888 </body></html>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698