| 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="nav_bar.html"> | |
| 3 <link rel="import" href="observatory_element.html"> | 2 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="class_ref.html"> | 3 <link rel="import" href="class_ref.html"> |
| 5 | 4 |
| 6 <polymer-element name="class-tree" extends="observatory-element"> | 5 <polymer-element name="class-tree" extends="observatory-element"> |
| 7 <template> | 6 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 8 <style> |
| 10 .table { | 9 .table { |
| 11 border-spacing: 0px; | 10 border-spacing: 0px; |
| 12 width: 100%; | 11 width: 100%; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 24 | 23 |
| 25 th { | 24 th { |
| 26 text-align: left; | 25 text-align: left; |
| 27 } | 26 } |
| 28 </style> | 27 </style> |
| 29 <nav-bar> | 28 <nav-bar> |
| 30 <top-nav-menu></top-nav-menu> | 29 <top-nav-menu></top-nav-menu> |
| 31 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> | 30 <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu> |
| 32 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> | 31 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> |
| 33 <nav-menu link="{{ makeLink('/class-tree', isolate) }}" anchor="class hier
archy" last="{{ true }}"></nav-menu> | 32 <nav-menu link="{{ makeLink('/class-tree', isolate) }}" anchor="class hier
archy" last="{{ true }}"></nav-menu> |
| 33 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
| 34 </nav-bar> | 34 </nav-bar> |
| 35 <div class="content-centered"> | 35 <div class="content-centered"> |
| 36 <h1>Class Hierarchy</h1> | 36 <h1>Class Hierarchy</h1> |
| 37 <table id="tableTree" class="table"> | 37 <table id="tableTree" class="table"> |
| 38 <tbody id="tableTreeBody"></tbody> | 38 <tbody id="tableTreeBody"></tbody> |
| 39 </table> | 39 </table> |
| 40 </div> | 40 </div> |
| 41 </template> | 41 </template> |
| 42 </polymer-element> | 42 </polymer-element> |
| 43 | 43 |
| 44 <script type="application/dart" src="class_tree.dart"></script> | 44 <script type="application/dart" src="class_tree.dart"></script> |
| OLD | NEW |