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="curly_block.html"> | |
3 <link rel="import" href="field_ref.html"> | 2 <link rel="import" href="field_ref.html"> |
4 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
5 <link rel="import" href="service_ref.html"> | 4 <link rel="import" href="service_ref.html"> |
6 | 5 |
7 <polymer-element name="inbound-reference" extends="service-ref"> | 6 <polymer-element name="inbound-reference" extends="service-ref"> |
8 <template> | 7 <template> |
9 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
10 <div> | 9 <div> |
11 <template if="{{ ref['parentField'] != null }}"> | 10 <template if="{{ ref['parentField'] != null }}"> |
12 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref> | 11 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref> |
(...skipping 14 matching lines...) Expand all Loading... |
27 </template> | 26 </template> |
28 </div> | 27 </div> |
29 </div> | 28 </div> |
30 </div> | 29 </div> |
31 </curly-block> | 30 </curly-block> |
32 </div> | 31 </div> |
33 </template> | 32 </template> |
34 </polymer-element> | 33 </polymer-element> |
35 | 34 |
36 <script type="application/dart" src="inbound_reference.dart"></script> | 35 <script type="application/dart" src="inbound_reference.dart"></script> |
OLD | NEW |