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 | |
4 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
5 | 3 |
6 <polymer-element name="class-tree"> | 4 <polymer-element name="class-tree"> |
7 <template> | 5 <template> |
8 <link rel="stylesheet" href="css/shared.css"> | 6 <link rel="stylesheet" href="css/shared.css"> |
9 <style> | 7 <style> |
10 .table { | 8 .table { |
11 border-spacing: 0px; | 9 border-spacing: 0px; |
12 width: 100%; | 10 width: 100%; |
13 margin-bottom: 20px | 11 margin-bottom: 20px |
(...skipping 22 matching lines...) Expand all Loading... |
36 <div class="content-centered"> | 34 <div class="content-centered"> |
37 <h1>Class Hierarchy</h1> | 35 <h1>Class Hierarchy</h1> |
38 <table id="tableTree" class="table"> | 36 <table id="tableTree" class="table"> |
39 <tbody id="tableTreeBody"></tbody> | 37 <tbody id="tableTreeBody"></tbody> |
40 </table> | 38 </table> |
41 </div> | 39 </div> |
42 </template> | 40 </template> |
43 </polymer-element> | 41 </polymer-element> |
44 | 42 |
45 <script type="application/dart" src="class_tree.dart"></script> | 43 <script type="application/dart" src="class_tree.dart"></script> |
OLD | NEW |