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

Side by Side Diff: client/web/category.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: 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
OLDNEW
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-panel.html"> 4 <link rel="import" href="method-panel.html">
5 <link rel="import" href="typedef.html"> 5 <link rel="import" href="typedef.html">
6 6
7 <polymer-element name="dartdoc-category" attributes="category"> 7 <polymer-element name="dartdoc-category" attributes="category">
8 <template> 8 <template>
9 <div class="accordion-heading"> 9 <div class="accordion-heading">
10 <a class="accordion-toggle {{accordionStyle}}" 10 <a class="accordion-toggle {{accordionStyle}}"
11 on-click="{{hideShow}}" 11 on-click="{{hideShow}}"
12 data-toggle="collapse" 12 data-toggle="collapse"
13 data-parent="{{accordionParent}}" 13 data-parent="{{accordionParent}}"
14 data-target="#accordion-{{stylizedName}}"> 14 data-target="#accordion-{{stylizedName}}">
15 {{title}} 15 {{title}}<b class="caret"></b>
16 </a> 16 </a>
17 </div> 17 </div>
18 18
19 <div id="accordion-{{stylizedName}}" 19 <div id="accordion-{{stylizedName}}"
20 class="accordion-body {{divClass}}" 20 class="accordion-body {{divClass}}"
21 style="height:{{divStyle}}"> 21 style="height:{{divStyle}}">
22 <div class="accordion-inner"> 22 <div class="accordion-inner">
23 <ul id="itemList" class="nav nav-pills nav-stacked"> 23 <ul id="itemList" class="nav nav-pills nav-stacked">
24 </ul> 24 </ul>
25 </div> 25 </div>
26 </div> 26 </div>
27 </template> 27 </template>
28 28
29 <script type="application/dart" src="category.dart"></script> 29 <script type="application/dart" src="category.dart"></script>
30 30
31 </polymer-element> 31 </polymer-element>
OLDNEW
« client/web/category.dart ('K') | « client/web/category.dart ('k') | client/web/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698