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