OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
1 <link rel="import" href="nav_bar.html"> | 2 <link rel="import" href="nav_bar.html"> |
2 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
3 <link rel="import" href="class_ref.html"> | 4 <link rel="import" href="class_ref.html"> |
4 | 5 |
5 <polymer-element name="class-tree" extends="observatory-element"> | 6 <polymer-element name="class-tree" extends="observatory-element"> |
6 <template> | 7 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
8 <style> | 9 <style> |
9 .table { | 10 .table { |
10 border-collapse: collapse!important; | 11 border-collapse: collapse!important; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 <class-ref ref="{{ row.cls }}"></class-ref> | 111 <class-ref ref="{{ row.cls }}"></class-ref> |
111 </td> | 112 </td> |
112 </tr> | 113 </tr> |
113 </tbody> | 114 </tbody> |
114 </table> | 115 </table> |
115 </div> | 116 </div> |
116 </template> | 117 </template> |
117 </polymer-element> | 118 </polymer-element> |
118 | 119 |
119 <script type="application/dart" src="class_tree.dart"></script> | 120 <script type="application/dart" src="class_tree.dart"></script> |
OLD | NEW |