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"> | |
8 <link rel="import" href="script_inset.html"> | 7 <link rel="import" href="script_inset.html"> |
9 <link rel="import" href="script_ref.html"> | |
10 <link rel="import" href="view_footer.html"> | |
11 | 8 |
12 <polymer-element name="function-view" extends="observatory-element"> | 9 <polymer-element name="function-view" extends="observatory-element"> |
13 <template> | 10 <template> |
14 <link rel="stylesheet" href="css/shared.css"> | 11 <link rel="stylesheet" href="css/shared.css"> |
15 <nav-bar> | 12 <nav-bar> |
16 <top-nav-menu></top-nav-menu> | 13 <top-nav-menu></top-nav-menu> |
17 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> | 14 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> |
18 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> | 15 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> |
19 <library-nav-menu library="{{ function.library }}"></library-nav-menu> | 16 <library-nav-menu library="{{ function.library }}"></library-nav-menu> |
20 <template if="{{ function.dartOwner is ServiceClass }}"> | 17 <template if="{{ function.dartOwner is ServiceClass }}"> |
21 <class-nav-menu cls="{{ function.dartOwner }}"></class-nav-menu> | 18 <class-nav-menu cls="{{ function.dartOwner }}"></class-nav-menu> |
22 </template> | 19 </template> |
23 <nav-menu link="{{ makeLink('/inspect', function) }}" anchor="{{ function.
name }}" last="{{ true }}"></nav-menu> | 20 <nav-menu link="{{ makeLink('/inspect', function) }}" |
| 21 anchor="{{ function.name }}" last="{{ true }}"></nav-menu> |
24 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 22 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 23 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
25 </nav-bar> | 24 </nav-bar> |
26 | 25 |
27 <div class="content"> | 26 <div class="content"> |
28 <h1>function {{ function.qualifiedName }}</h1> | 27 <h1>function {{ function.qualifiedName }}</h1> |
29 | 28 |
30 <object-common object="{{ function }}"></object-common> | 29 <object-common object="{{ function }}"></object-common> |
31 <br> | 30 <br> |
32 | 31 |
33 <div class="memberList"> | 32 <div class="memberList"> |
34 <div class="memberItem"> | 33 <div class="memberItem"> |
(...skipping 90 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 |