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

Side by Side Diff: client/web/minimap-class.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/main.html ('k') | client/web/minimap-library.html » ('j') | 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-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
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>
OLDNEW
« no previous file with comments | « client/web/main.html ('k') | client/web/minimap-library.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698