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