Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="class_ref.html"> | |
| 2 <link rel="import" href="service_ref.html"> | 3 <link rel="import" href="service_ref.html"> |
| 3 </head> | 4 </head> |
| 4 <polymer-element name="function-ref" extends="service-ref"> | 5 <polymer-element name="function-ref" extends="service-ref"> |
| 5 <template> | 6 <!-- TODO(turnidge): Is there a way to add newlines to this without |
| 6 <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a> | 7 messing up the output? --> |
| 7 </template> | 8 <template><template if="{{ qualified && ref['parent'] == null && ref['class'][ 'name'] != '::' }}"><class-ref ref="{{ ref['class'] }}"></class-ref>.</template> <template if="{{ qualified && ref['parent'] != null }}"><function-ref ref="{{ re f['parent'] }}" qualified="{{ true }}"></function-ref>.</template><a href="{{ ur l }}">{{ name }}</a></template> |
|
Cutch
2014/03/13 18:16:40
Could you move this code into methods on FunctionR
| |
| 9 | |
| 8 <script type="application/dart" src="function_ref.dart"></script> | 10 <script type="application/dart" src="function_ref.dart"></script> |
| 9 </polymer-element> | 11 </polymer-element> |
| OLD | NEW |