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