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="field_ref.html"> | 3 <link rel="import" href="field_ref.html"> |
4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
5 <link rel="import" href="instance_ref.html"> | 5 <link rel="import" href="instance_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="object_common.html"> | 7 <link rel="import" href="object_common.html"> |
9 <link rel="import" href="context_ref.html"> | 8 <link rel="import" href="context_ref.html"> |
10 <link rel="import" href="view_footer.html"> | |
11 | 9 |
12 <polymer-element name="context-view" extends="observatory-element"> | 10 <polymer-element name="context-view" extends="observatory-element"> |
13 <template> | 11 <template> |
14 <link rel="stylesheet" href="css/shared.css"> | 12 <link rel="stylesheet" href="css/shared.css"> |
15 <nav-bar> | 13 <nav-bar> |
16 <top-nav-menu></top-nav-menu> | 14 <top-nav-menu></top-nav-menu> |
17 <vm-nav-menu vm="{{ context.isolate.vm }}"></vm-nav-menu> | 15 <vm-nav-menu vm="{{ context.isolate.vm }}"></vm-nav-menu> |
18 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu> | 16 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu> |
19 <!-- TODO(turnidge): Add library nav menu here. --> | 17 <!-- TODO(turnidge): Add library nav menu here. --> |
20 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu> | 18 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu> |
21 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> | 19 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> |
22 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 20 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 21 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
23 </nav-bar> | 22 </nav-bar> |
24 | 23 |
25 <template if="{{ !context.isError }}"> | 24 <template if="{{ !context.isError }}"> |
26 <div class="content"> | 25 <div class="content"> |
27 <h1>instance of Context</h1> | 26 <h1>instance of Context</h1> |
28 | 27 |
29 <object-common object="{{ context }}"></object-common> | 28 <object-common object="{{ context }}"></object-common> |
30 <br> | 29 <br> |
31 | 30 |
32 <div class="memberList"> | 31 <div class="memberList"> |
(...skipping 28 matching lines...) Expand all Loading... |
61 </div> | 60 </div> |
62 </curly-block><br><br> | 61 </curly-block><br><br> |
63 </template> | 62 </template> |
64 </div> | 63 </div> |
65 </template> | 64 </template> |
66 <view-footer></view-footer> | 65 <view-footer></view-footer> |
67 </template> | 66 </template> |
68 </polymer-element> | 67 </polymer-element> |
69 | 68 |
70 <script type="application/dart" src="context_view.dart"></script> | 69 <script type="application/dart" src="context_view.dart"></script> |
OLD | NEW |