| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="isolate_summary.html"> | 5 <link rel="import" href="isolate_summary.html"> |
| 6 <link rel="import" href="library_ref.html"> | 6 <link rel="import" href="library_ref.html"> |
| 7 <link rel="import" href="nav_bar.html"> | 7 <link rel="import" href="nav_bar.html"> |
| 8 <link rel="import" href="observatory_element.html"> | 8 <link rel="import" href="observatory_element.html"> |
| 9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
| 10 </head> | 10 </head> |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 <div class="memberItem"> | 51 <div class="memberItem"> |
| 52 <div class="memberName">uptime</div> | 52 <div class="memberName">uptime</div> |
| 53 <div class="memberValue">{{ vm.uptime | formatTime }}</div> | 53 <div class="memberValue">{{ vm.uptime | formatTime }}</div> |
| 54 </div> | 54 </div> |
| 55 </div> | 55 </div> |
| 56 </div> | 56 </div> |
| 57 | 57 |
| 58 <br> | 58 <br> |
| 59 | 59 |
| 60 <ul class="list-group"> | 60 <ul class="list-group"> |
| 61 <template repeat="{{ isolate in vm.allIsolates }}"> | 61 <template repeat="{{ isolate in vm.isolates }}"> |
| 62 <li class="list-group-item"> | 62 <li class="list-group-item"> |
| 63 <isolate-summary isolate="{{ isolate }}"></isolate-summary> | 63 <isolate-summary isolate="{{ isolate }}"></isolate-summary> |
| 64 </li> | 64 </li> |
| 65 </template> | 65 </template> |
| 66 </ul> | 66 </ul> |
| 67 </template> | 67 </template> |
| 68 <script type="application/dart" src="vm_view.dart"></script> | 68 <script type="application/dart" src="vm_view.dart"></script> |
| 69 </polymer-element> | 69 </polymer-element> |
| OLD | NEW |