OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
3 <link rel="import" href="curly_block.html"> | |
4 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
5 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
6 <link rel="import" href="isolate_summary.html"> | 5 <link rel="import" href="isolate_summary.html"> |
7 <link rel="import" href="library_ref.html"> | 6 <link rel="import" href="library_ref.html"> |
8 <link rel="import" href="nav_bar.html"> | |
9 <link rel="import" href="observatory_element.html"> | 7 <link rel="import" href="observatory_element.html"> |
10 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
11 <link rel="import" href="script_ref.html"> | |
12 <link rel="import" href="view_footer.html"> | |
13 | 9 |
14 <polymer-element name="isolate-view" extends="observatory-element"> | 10 <polymer-element name="isolate-view" extends="observatory-element"> |
15 <template> | 11 <template> |
16 <link rel="stylesheet" href="css/shared.css"> | 12 <link rel="stylesheet" href="css/shared.css"> |
17 <style> | 13 <style> |
18 .sourceInset { | 14 .sourceInset { |
19 padding-left: 15%; | 15 padding-left: 15%; |
20 padding-right: 15%; | 16 padding-right: 15%; |
21 } | 17 } |
22 .miniProfileChart { | 18 .miniProfileChart { |
23 width: 80%; | 19 width: 80%; |
24 } | 20 } |
25 </style> | 21 </style> |
26 | 22 |
27 <nav-bar> | 23 <nav-bar> |
28 <top-nav-menu></top-nav-menu> | 24 <top-nav-menu></top-nav-menu> |
29 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> | 25 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> |
30 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}"></isolate-nav-
menu> | 26 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}" |
| 27 ></isolate-nav-menu> |
31 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 28 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 29 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
32 </nav-bar> | 30 </nav-bar> |
33 | 31 |
34 <div class="content-centered"> | 32 <div class="content-centered"> |
35 <h1>isolate '{{ isolate.name }}'</h1> | 33 <h1>isolate '{{ isolate.name }}'</h1> |
36 <br> | 34 <br> |
37 <div class="flex-row"> | 35 <div class="flex-row"> |
38 <div style="flex:1"></div> | 36 <div style="flex:1"></div> |
39 <div> | 37 <div> |
40 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> | 38 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> |
41 <isolate-location isolate="{{ isolate }}"></isolate-location> | 39 <isolate-location isolate="{{ isolate }}"></isolate-location> |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 <hr> | 137 <hr> |
140 <script-inset script="{{ rootLibrary.rootScript }}"> | 138 <script-inset script="{{ rootLibrary.rootScript }}"> |
141 </script-inset> | 139 </script-inset> |
142 </div> | 140 </div> |
143 | 141 |
144 <view-footer></view-footer> | 142 <view-footer></view-footer> |
145 </template> | 143 </template> |
146 </polymer-element> | 144 </polymer-element> |
147 | 145 |
148 <script type="application/dart" src="isolate_view.dart"></script> | 146 <script type="application/dart" src="isolate_view.dart"></script> |
OLD | NEW |