Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: client/web/minimap-library.html

Issue 60233005: Remove WIP label, make categories always expanded, move build number down. (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Go back to collapsing when small, panel and minimap vanish at the same time column widens Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « client/web/minimap-class.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « client/web/minimap-class.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698