| OLD | NEW |
| (Empty) |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | |
| 2 <link rel="import" href="service_ref.html"> | |
| 3 | |
| 4 <polymer-element name="inbound-reference"> | |
| 5 <template> | |
| 6 <link rel="stylesheet" href="css/shared.css"> | |
| 7 <div> | |
| 8 <template if="{{ ref['parentField'] != null }}"> | |
| 9 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref> | |
| 10 </template> | |
| 11 <template if="{{ ref['parentListIndex'] != null }}"> | |
| 12 from [{{ ref['parentListIndex'] }}] of | |
| 13 </template> | |
| 14 <template if="{{ ref['_parentWordOffset'] != null }}"> | |
| 15 from word[{{ ref['_parentWordOffset'] }}] of | |
| 16 </template> | |
| 17 <any-service-ref ref="{{ ref['source'] }}"></any-service-ref> | |
| 18 <curly-block callback="{{ expander() }}"> | |
| 19 <div class="memberList"> | |
| 20 <div class="memberItem"> | |
| 21 <div class="memberName"> | |
| 22 <template repeat="{{ reference in inboundReferences }}"> | |
| 23 <inbound-reference ref="{{ reference }}"></inbound-reference> | |
| 24 </template> | |
| 25 </div> | |
| 26 </div> | |
| 27 </div> | |
| 28 </curly-block> | |
| 29 </div> | |
| 30 </template> | |
| 31 </polymer-element> | |
| 32 | |
| 33 <script type="application/dart" src="inbound_reference.dart"></script> | |
| OLD | NEW |