| 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="observatory_element.html"> | |
| 3 | 2 |
| 4 <polymer-element name="service-ref" extends="observatory-element"> | 3 <polymer-element name="any-service-ref"> |
| 5 </polymer-element> | 4 </polymer-element> |
| 6 | 5 |
| 7 <polymer-element name="any-service-ref" extends="observatory-element"> | 6 <polymer-element name="object-ref"> |
| 8 </polymer-element> | |
| 9 | |
| 10 <polymer-element name="object-ref" extends="service-ref"> | |
| 11 <template><link rel="stylesheet" href="css/shared.css"> | 7 <template><link rel="stylesheet" href="css/shared.css"> |
| 12 | 8 |
| 13 <template if="{{ ref.isObjectPool }}"> | 9 <template if="{{ ref.isObjectPool }}"> |
| 14 <a on-click="{{ goto }}" _href="{{ url }}"> | 10 <a on-click="{{ goto }}" _href="{{ url }}"> |
| 15 <em>{{ ref.vmType }}</em> ({{ ref.length }}) | 11 <em>{{ ref.vmType }}</em> ({{ ref.length }}) |
| 16 </a> | 12 </a> |
| 17 <curly-block callback="{{ expander() }}" expandKey="{{ expandKey }}"> | 13 <curly-block callback="{{ expander() }}" expandKey="{{ expandKey }}"> |
| 18 <template if="{{ expanded }}"> | 14 <template if="{{ expanded }}"> |
| 19 <div class="indented"> | 15 <div class="indented"> |
| 20 <template repeat="{{ entry in ref.entries }}"> | 16 <template repeat="{{ entry in ref.entries }}"> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.vmType }}</em></a> | 49 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.vmType }}</em></a> |
| 54 </template> | 50 </template> |
| 55 <template if="{{ !nameIsEmpty }}"> | 51 <template if="{{ !nameIsEmpty }}"> |
| 56 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ name }}</em></a> | 52 <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ name }}</em></a> |
| 57 </template> | 53 </template> |
| 58 </template> | 54 </template> |
| 59 </template> | 55 </template> |
| 60 </polymer-element> | 56 </polymer-element> |
| 61 | 57 |
| 62 <script type="application/dart" src="service_ref.dart"></script> | 58 <script type="application/dart" src="service_ref.dart"></script> |
| OLD | NEW |