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