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? --> |
|
Cutch
2014/03/14 19:45:20
Maybe add some line breaks here. It's really hard
| |
| 7 </template> | 8 <template><template if="{{ qualified && !hasParent && hasClass }}"><class-ref ref="{{ ref['class'] }}"></class-ref>.</template><template if="{{ qualified && h asParent }}"><function-ref ref="{{ ref['parent'] }}" qualified="{{ true }}"></fu nction-ref>.</template><a href="{{ url }}">{{ name }}</a></template> |
| 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 |