| 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"> |
| 11 <link rel="import" href="script_ref.html"> | 11 <link rel="import" href="script_ref.html"> |
| 12 <link rel="import" href="view_footer.html"> |
| 12 | 13 |
| 13 <polymer-element name="isolate-view" extends="observatory-element"> | 14 <polymer-element name="isolate-view" extends="observatory-element"> |
| 14 <template> | 15 <template> |
| 15 <link rel="stylesheet" href="css/shared.css"> | 16 <link rel="stylesheet" href="css/shared.css"> |
| 16 <style> | 17 <style> |
| 17 .sourceInset { | 18 .sourceInset { |
| 18 padding-left: 15%; | 19 padding-left: 15%; |
| 19 padding-right: 15%; | 20 padding-right: 15%; |
| 20 } | 21 } |
| 21 .miniProfileChart { | 22 .miniProfileChart { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 131 |
| 131 <div class="content"> | 132 <div class="content"> |
| 132 <div id="tagProfileChart" class="miniProfileChart" style="height: 600px"><
/div> | 133 <div id="tagProfileChart" class="miniProfileChart" style="height: 600px"><
/div> |
| 133 </div> | 134 </div> |
| 134 | 135 |
| 135 <hr> | 136 <hr> |
| 136 | 137 |
| 137 <div class="content"> | 138 <div class="content"> |
| 138 <eval-box callback="{{ eval }}"></eval-box> | 139 <eval-box callback="{{ eval }}"></eval-box> |
| 139 </div> | 140 </div> |
| 140 <br><br><br><br> | 141 <view-footer></view-footer> |
| 141 <br><br><br><br> | |
| 142 </template> | 142 </template> |
| 143 </polymer-element> | 143 </polymer-element> |
| 144 | 144 |
| 145 <script type="application/dart" src="isolate_view.dart"></script> | 145 <script type="application/dart" src="isolate_view.dart"></script> |
| OLD | NEW |