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="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
3 <link rel="import" href="code_ref.html"> | 3 <link rel="import" href="code_ref.html"> |
4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
6 <link rel="import" href="observatory_element.html"> | 6 <link rel="import" href="observatory_element.html"> |
7 <link rel="import" href="nav_bar.html"> | 7 <link rel="import" href="nav_bar.html"> |
8 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
10 <link rel="import" href="view_footer.html"> | |
11 | 10 |
12 <polymer-element name="function-view" extends="observatory-element"> | 11 <polymer-element name="function-view" extends="observatory-element"> |
13 <template> | 12 <template> |
14 <link rel="stylesheet" href="css/shared.css"> | 13 <link rel="stylesheet" href="css/shared.css"> |
15 <nav-bar> | 14 <nav-bar> |
16 <top-nav-menu></top-nav-menu> | 15 <top-nav-menu></top-nav-menu> |
17 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> | 16 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> |
18 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> | 17 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> |
19 <library-nav-menu library="{{ function.library }}"></library-nav-menu> | 18 <library-nav-menu library="{{ function.library }}"></library-nav-menu> |
20 <template if="{{ function.dartOwner is ServiceClass }}"> | 19 <template if="{{ function.dartOwner is ServiceClass }}"> |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 <div class="content-centered-big"> | 124 <div class="content-centered-big"> |
126 <hr> | 125 <hr> |
127 <source-inset location="{{ function.location }}"></source-inset> | 126 <source-inset location="{{ function.location }}"></source-inset> |
128 </div> | 127 </div> |
129 | 128 |
130 <view-footer></view-footer> | 129 <view-footer></view-footer> |
131 </template> | 130 </template> |
132 </polymer-element> | 131 </polymer-element> |
133 | 132 |
134 <script type="application/dart" src="function_view.dart"></script> | 133 <script type="application/dart" src="function_view.dart"></script> |
OLD | NEW |