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-library" | 4 <polymer-element name="dartdoc-minimap-library" |
5 attributes="item"> | 5 attributes="item"> |
6 <template> | 6 <template> |
7 <div class="visible-lg col-lg-3 well well-sm nav affix-right" | 7 <div class="well well-sm nav affix-right" |
8 id="minimap"> | 8 id="minimap"> |
9 <a href="#{{linkHref}}"> | 9 <a href="#{{linkHref}}"> |
10 {{name}} library | 10 {{name}} library |
11 </a> | 11 </a> |
12 <ul> | 12 <ul> |
13 <template | 13 <template |
14 if="{{operatorItemsIsNotEmpty}}"> | 14 if="{{operatorItemsIsNotEmpty}}"> |
15 <li><a href="{{currentLocation}}#operators" on-click="{{hideShow}}"> | 15 <li><a href="{{currentLocation}}#operators" on-click="{{hideShow}}"> |
16 Operators<b class="caret"></b> | 16 Operators<b class="caret"></b> |
17 </a></li> | 17 </a></li> |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 items="{{errorItems}}"> | 75 items="{{errorItems}}"> |
76 </dartdoc-minimap> | 76 </dartdoc-minimap> |
77 </ul> | 77 </ul> |
78 </template> | 78 </template> |
79 </ul> | 79 </ul> |
80 </div> | 80 </div> |
81 </template> | 81 </template> |
82 <script type="application/dart" src="minimap-library.dart"></script> | 82 <script type="application/dart" src="minimap-library.dart"></script> |
83 </polymer-element> | 83 </polymer-element> |
84 | 84 |
OLD | NEW |