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 <link rel="import" href="view_footer.html"> | 10 <link rel="import" href="view_footer.html"> |
11 | 11 |
12 <polymer-element name="context-view" extends="observatory-element"> | 12 <polymer-element name="context-view" extends="observatory-element"> |
13 <template> | 13 <template> |
14 <link rel="stylesheet" href="css/shared.css"> | 14 <link rel="stylesheet" href="css/shared.css"> |
15 <nav-bar> | 15 <nav-bar> |
16 <top-nav-menu></top-nav-menu> | 16 <top-nav-menu></top-nav-menu> |
| 17 <vm-nav-menu vm="{{ context.isolate.vm }}"></vm-nav-menu> |
17 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu> | 18 <isolate-nav-menu isolate="{{ context.isolate }}"></isolate-nav-menu> |
18 <!-- TODO(turnidge): Add library nav menu here. --> | 19 <!-- TODO(turnidge): Add library nav menu here. --> |
19 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu> | 20 <class-nav-menu cls="{{ context.clazz }}"></class-nav-menu> |
20 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> | 21 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> |
21 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 22 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
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> |
(...skipping 30 matching lines...) Expand all Loading... |
57 </div> | 58 </div> |
58 </curly-block><br><br> | 59 </curly-block><br><br> |
59 </template> | 60 </template> |
60 </div> | 61 </div> |
61 </template> | 62 </template> |
62 <view-footer></view-footer> | 63 <view-footer></view-footer> |
63 </template> | 64 </template> |
64 </polymer-element> | 65 </polymer-element> |
65 | 66 |
66 <script type="application/dart" src="context_view.dart"></script> | 67 <script type="application/dart" src="context_view.dart"></script> |
OLD | NEW |