| OLD | NEW |
| 1 <link rel="import" href="annotations.html"> | 1 <link rel="import" href="annotations.html"> |
| 2 <link rel="import" href="comment.html"> | 2 <link rel="import" href="comment.html"> |
| 3 <link rel="import" href="parameters.html"> | 3 <link rel="import" href="parameters.html"> |
| 4 | 4 |
| 5 <polymer-element name="dartdoc-typedef" attributes="item"> | 5 <polymer-element name="dartdoc-typedef" attributes="item"> |
| 6 <template> | 6 <template> |
| 7 <div class="page-header"><h1>{{item.name}} typedef</h1></div> | |
| 8 | 7 |
| 9 <!-- Signature --> | 8 <!-- Signature --> |
| 10 <div class="panel-heading"> | 9 <div class="panel-heading"> |
| 11 <dartdoc-annotation annotations="{{item.annotations}}"> | 10 <dartdoc-annotation annotations="{{item.annotations}}"> |
| 12 </dartdoc-annotation> | 11 </dartdoc-annotation> |
| 13 | 12 |
| 13 <div class="page-header"> |
| 14 <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}"> |
| 15 {{item.name}}</a></b> |
| 16 </div> |
| 17 |
| 14 <p class="panel-title">typedef | 18 <p class="panel-title">typedef |
| 15 <a href="{{prefixedLocation}}">{{item.type.simpleType}}</a> | 19 <a href="{{prefixedLocation}}">{{item.type.simpleType}}</a> |
| 16 {{item.name}} | 20 {{item.name}} |
| 17 <dartdoc-parameter parameters="{{item.parameters}}"></dartdoc-parameter> | 21 <dartdoc-parameter parameters="{{item.parameters}}"></dartdoc-parameter> |
| 18 </p> | 22 </p> |
| 19 </div> | 23 </div> |
| 20 | 24 |
| 21 <!-- Comment --> | 25 <!-- Comment --> |
| 22 <div is="dartdoc-comment" item="{{item}}"></div> | 26 <div is="dartdoc-comment" item="{{item}}"></div> |
| 23 </template> | 27 </template> |
| 24 | 28 |
| 25 <script type="application/dart;component=1" src="typedef.dart"></script> | 29 <script type="application/dart;component=1" src="typedef.dart"></script> |
| 26 </polymer-element> | 30 </polymer-element> |
| OLD | NEW |