| 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="instance_ref.html"> | 2 <link rel="import" href="instance_ref.html"> |
| 3 <link rel="import" href="error_ref.html"> | |
| 4 | 3 |
| 5 | 4 |
| 6 <polymer-element name="eval-link"> | 5 <polymer-element name="eval-link"> |
| 7 <template> | 6 <template> |
| 8 <style> | 7 <style> |
| 9 .idle { | 8 .idle { |
| 10 color: #0489c3; | 9 color: #0489c3; |
| 11 cursor: pointer; | 10 cursor: pointer; |
| 12 } | 11 } |
| 13 .busy { | 12 .busy { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 27 </template> | 26 </template> |
| 28 <template if="{{ error == null }}"> | 27 <template if="{{ error == null }}"> |
| 29 <template if="{{ result != null }}"> | 28 <template if="{{ result != null }}"> |
| 30 = <any-service-ref ref="{{ result }}"></any-service-ref> | 29 = <any-service-ref ref="{{ result }}"></any-service-ref> |
| 31 </template> | 30 </template> |
| 32 </template> | 31 </template> |
| 33 </template> | 32 </template> |
| 34 </polymer-element> | 33 </polymer-element> |
| 35 | 34 |
| 36 <script type="application/dart" src="eval_link.dart"></script> | 35 <script type="application/dart" src="eval_link.dart"></script> |
| OLD | NEW |