| OLD | NEW |
| 1 <link rel="import" href="category.html"> | 1 <link rel="import" href="category.html"> |
| 2 <link rel="import" href="class.html"> | 2 <link rel="import" href="class.html"> |
| 3 <link rel="import" href="comment.html"> | 3 <link rel="import" href="comment.html"> |
| 4 <link rel="import" href="item.html"> | 4 <link rel="import" href="item.html"> |
| 5 | 5 |
| 6 <polymer-element name="dartdoc-library" attributes="item"> | 6 <polymer-element name="dartdoc-library" attributes="item"> |
| 7 <template> | 7 <template> |
| 8 <div class="page-header"><h1>{{item.decoratedName}} library</h1></div> | 8 <div class="page-header"><h1>{{item.decoratedName}} library</h1></div> |
| 9 | 9 |
| 10 <!-- Comment --> | 10 <!-- Comment --> |
| 11 <!-- TODO(alanknight): The div with itemList and panel are here to | 11 <!-- TODO(alanknight): The div with itemList and panel are here to |
| 12 convince it to use the right paragraph spacing. Seems pretty awful. --> | 12 convince it to use the right paragraph spacing. Seems pretty awful. --> |
| 13 <div id="itemList"> | 13 <div id="itemList"> |
| 14 <div is="dartdoc-comment" class="panel" item="{{item}}"></div> | 14 <div is="dartdoc-comment" class="panel" item="{{item}}"></div> |
| 15 </div> | 15 </div> |
| 16 <div class="accordion" id="accordion-grouping"> | 16 <div class="accordion" id="accordion-grouping"> |
| 17 <!-- Note: the implementation knows about the order of these items. --> | 17 <!-- Note: the implementation knows about the order of these items. --> |
| 18 <dartdoc-category category="{{item.operators}}" | 18 <dartdoc-category category="{{item.operators}}" |
| 19 methods="{{lazyOperators}}"></dartdoc-category> | 19 methods="{{lazyOperators}}"></dartdoc-category> |
| 20 <dartdoc-category category="{{item.variables}}" | 20 <dartdoc-category category="{{item.variables}}" |
| 21 variables="{{lazyVariables}}"></dartdoc-category> | 21 variables="{{lazyVariables}}"></dartdoc-category> |
| 22 <dartdoc-category category="{{item.functions}}" | 22 <dartdoc-category category="{{item.functions}}" |
| 23 methods="{{lazyFunctions}}"></dartdoc-category> | 23 methods="{{lazyFunctions}}"></dartdoc-category> |
| 24 <dartdoc-category category="{{item.classes}}" | 24 <dartdoc-category category="{{item.classes}}" |
| 25 items="{{lazyClasses}}"></dartdoc-category> | 25 items="{{lazyClasses}}"></dartdoc-category> |
| 26 <dartdoc-category category="{{item.typedefs}}" | 26 <dartdoc-category category="{{item.typedefs}}" |
| 27 items="{{lazyTypedefs}}"></dartdoc-category> | 27 typedefs="{{lazyTypedefs}}"></dartdoc-category> |
| 28 <dartdoc-category category="{{item.errors}}" | 28 <dartdoc-category category="{{item.errors}}" |
| 29 items="{{lazyErrors}}"></dartdoc-category> | 29 items="{{lazyErrors}}"></dartdoc-category> |
| 30 </div> | 30 </div> |
| 31 </template> | 31 </template> |
| 32 | 32 |
| 33 <script type="application/dart;component=1" src="library.dart"></script> | 33 <script type="application/dart;component=1" src="library.dart"></script> |
| 34 </polymer-element> | 34 </polymer-element> |
| OLD | NEW |