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="curly_block.html"> | 3 <link rel="import" href="curly_block.html"> |
4 <link rel="import" href="eval_box.html"> | 4 <link rel="import" href="eval_box.html"> |
5 <link rel="import" href="field_ref.html"> | 5 <link rel="import" href="field_ref.html"> |
6 <link rel="import" href="function_ref.html"> | 6 <link rel="import" href="function_ref.html"> |
7 <link rel="import" href="instance_ref.html"> | 7 <link rel="import" href="instance_ref.html"> |
8 <link rel="import" href="observatory_element.html"> | 8 <link rel="import" href="observatory_element.html"> |
9 <link rel="import" href="library_ref.html"> | 9 <link rel="import" href="library_ref.html"> |
10 <link rel="import" href="nav_bar.html"> | 10 <link rel="import" href="nav_bar.html"> |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 <template if="{{ library.variables.isNotEmpty }}"> | 97 <template if="{{ library.variables.isNotEmpty }}"> |
98 variables ({{ library.variables.length }}) | 98 variables ({{ library.variables.length }}) |
99 <curly-block expand="{{ library.variables.length <= 8 }}"> | 99 <curly-block expand="{{ library.variables.length <= 8 }}"> |
100 <div class="memberList"> | 100 <div class="memberList"> |
101 <template repeat="{{ field in library.variables }}"> | 101 <template repeat="{{ field in library.variables }}"> |
102 <div class="memberItem"> | 102 <div class="memberItem"> |
103 <div class="memberName"> | 103 <div class="memberName"> |
104 <field-ref ref="{{ field }}"></field-ref> | 104 <field-ref ref="{{ field }}"></field-ref> |
105 </div> | 105 </div> |
106 <div class="memberValue"> | 106 <div class="memberValue"> |
107 <template if="{{ field.value != null }}"> | 107 <template if="{{ field.staticValue != null }}"> |
108 <any-service-ref ref="{{ field.value }}"></any-service-ref> | 108 <any-service-ref ref="{{ field.staticValue }}"></any-service
-ref> |
109 </template> | 109 </template> |
110 </div> | 110 </div> |
111 </div> | 111 </div> |
112 </template> | 112 </template> |
113 </div> | 113 </div> |
114 </curly-block><br> | 114 </curly-block><br> |
115 <br> | 115 <br> |
116 </template> | 116 </template> |
117 | 117 |
118 <template if="{{ library.functions.isNotEmpty }}"> | 118 <template if="{{ library.functions.isNotEmpty }}"> |
(...skipping 16 matching lines...) Expand all Loading... |
135 <hr> | 135 <hr> |
136 | 136 |
137 <div class="content"> | 137 <div class="content"> |
138 <eval-box callback="{{ evaluate }}"></eval-box> | 138 <eval-box callback="{{ evaluate }}"></eval-box> |
139 </div> | 139 </div> |
140 <view-footer></view-footer> | 140 <view-footer></view-footer> |
141 </template> | 141 </template> |
142 </polymer-element> | 142 </polymer-element> |
143 | 143 |
144 <script type="application/dart" src="library_view.dart"></script> | 144 <script type="application/dart" src="library_view.dart"></script> |
OLD | NEW |