OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <link rel="import" href="minimap-element.html"> | 2 <link rel="import" href="minimap-element.html"> |
3 | 3 |
4 <polymer-element name="dartdoc-minimap-class" attributes="item"> | 4 <polymer-element name="dartdoc-minimap-class" attributes="item"> |
5 <template> | 5 <template> |
6 <div class="visible-lg col-lg-3 well well-sm nav affix-right" | 6 <div class="well well-sm nav affix-right" |
7 id="minimap"> | 7 id="minimap"> |
8 <a href="#{{linkHref}}"> | 8 <a href="#{{linkHref}}"> |
9 {{name}} Class | 9 {{name}} Class |
10 </a> | 10 </a> |
11 <ul> | 11 <ul> |
12 <template if="{{shouldShowConstructors}}"> | 12 <template if="{{shouldShowConstructors}}"> |
13 <li><a href="{{currentLocation}}#constructors" | 13 <li><a href="{{currentLocation}}#constructors" |
14 on-click="{{hideShow}}"> | 14 on-click="{{hideShow}}"> |
15 Constructors<b class="caret"></b> | 15 Constructors<b class="caret"></b> |
16 </a></li> | 16 </a></li> |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 <dartdoc-minimap | 71 <dartdoc-minimap |
72 items="{{staticVariableItems}}"> | 72 items="{{staticVariableItems}}"> |
73 </dartdoc-minimap> | 73 </dartdoc-minimap> |
74 </ul> | 74 </ul> |
75 </template> | 75 </template> |
76 </ul> | 76 </ul> |
77 </div> | 77 </div> |
78 </template> | 78 </template> |
79 <script type="application/dart" src="minimap-class.dart"></script> | 79 <script type="application/dart" src="minimap-class.dart"></script> |
80 </polymer-element> | 80 </polymer-element> |
OLD | NEW |