| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <link rel="import" href="item.html"> | 2 <link rel="import" href="item.html"> |
| 3 <link rel="import" href="variable.html"> | 3 <link rel="import" href="variable.html"> |
| 4 <link rel="import" href="method.html"> | 4 <link rel="import" href="method.html"> |
| 5 <link rel="import" href="typedef.html"> | 5 <link rel="import" href="typedef.html"> |
| 6 | 6 |
| 7 <!-- TODO(jmesserly): try lightdom here --> | 7 <!-- TODO(jmesserly): try lightdom here --> |
| 8 <polymer-element name="dartdoc-category" class="accordion-group"> | 8 <polymer-element name="dartdoc-category" class="accordion-group"> |
| 9 <template> | 9 <template> |
| 10 <template if="{{hasItems}}"> | 10 <template if="{{hasItems}}"> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class="accordion-body {{divClass}}" | 21 class="accordion-body {{divClass}}" |
| 22 style="height:{{lineHeight}}"> | 22 style="height:{{lineHeight}}"> |
| 23 <div class="accordion-inner"> | 23 <div class="accordion-inner"> |
| 24 <ul id="itemList" class="nav nav-pills nav-stacked"> | 24 <ul id="itemList" class="nav nav-pills nav-stacked"> |
| 25 <template repeat="{{variables}}"> | 25 <template repeat="{{variables}}"> |
| 26 <dartdoc-variable class="panel" item="{{}}"></dartdoc-variable> | 26 <dartdoc-variable class="panel" item="{{}}"></dartdoc-variable> |
| 27 </template> | 27 </template> |
| 28 <template repeat="{{items}}"> | 28 <template repeat="{{items}}"> |
| 29 <dartdoc-item class="panel" item="{{}}"></dartdoc-item> | 29 <dartdoc-item class="panel" item="{{}}"></dartdoc-item> |
| 30 </template> | 30 </template> |
| 31 <template repeat="{{typedefs}}"> |
| 32 <dartdoc-typedef class="panel" item="{{}}"></dartdoc-typedef> |
| 33 </template> |
| 31 <template repeat="{{methods}}"> | 34 <template repeat="{{methods}}"> |
| 32 <method-panel class="panel" item="{{}}"></method-panel> | 35 <method-panel class="panel" item="{{}}"></method-panel> |
| 33 </template> | 36 </template> |
| 34 </ul> | 37 </ul> |
| 35 </div> | 38 </div> |
| 36 </div> | 39 </div> |
| 37 </template> | 40 </template> |
| 38 </template> | 41 </template> |
| 39 <script type="application/dart;component=1" src="category.dart"></script> | 42 <script type="application/dart;component=1" src="category.dart"></script> |
| 40 </polymer-element> | 43 </polymer-element> |
| OLD | NEW |