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

Side by Side Diff: client/lib/components/category.html

Issue 273473002: Display function signatures instead of just "Function". (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Created 6 years, 7 months 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/lib/components/category.dart ('k') | client/lib/components/closure.dart » ('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="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.html"> 4 <link rel="import" href="method.html">
5 <link rel="import" href="typedef.html"> 5 <link rel="import" href="typedef.html">
6 6
7 <!-- TODO(jmesserly): try lightdom here --> 7 <!-- TODO(jmesserly): try lightdom here -->
8 <polymer-element name="dartdoc-category" class="accordion-group"> 8 <polymer-element name="dartdoc-category" class="accordion-group">
9 <template> 9 <template>
10 <template if="{{hasItems}}"> 10 <template if="{{hasItems}}">
(...skipping 10 matching lines...) Expand all
21 class="accordion-body {{divClass}}" 21 class="accordion-body {{divClass}}"
22 style="height:{{lineHeight}}"> 22 style="height:{{lineHeight}}">
23 <div class="accordion-inner"> 23 <div class="accordion-inner">
24 <ul id="itemList" class="nav nav-pills nav-stacked"> 24 <ul id="itemList" class="nav nav-pills nav-stacked">
25 <template repeat="{{variables}}"> 25 <template repeat="{{variables}}">
26 <dartdoc-variable class="panel" item="{{}}"></dartdoc-variable> 26 <dartdoc-variable class="panel" item="{{}}"></dartdoc-variable>
27 </template> 27 </template>
28 <template repeat="{{items}}"> 28 <template repeat="{{items}}">
29 <dartdoc-item class="panel" item="{{}}"></dartdoc-item> 29 <dartdoc-item class="panel" item="{{}}"></dartdoc-item>
30 </template> 30 </template>
31 <template repeat="{{typedefs}}">
32 <dartdoc-typedef class="panel" item="{{}}"></dartdoc-typedef>
33 </template>
31 <template repeat="{{methods}}"> 34 <template repeat="{{methods}}">
32 <method-panel class="panel" item="{{}}"></method-panel> 35 <method-panel class="panel" item="{{}}"></method-panel>
33 </template> 36 </template>
34 </ul> 37 </ul>
35 </div> 38 </div>
36 </div> 39 </div>
37 </template> 40 </template>
38 </template> 41 </template>
39 <script type="application/dart;component=1" src="category.dart"></script> 42 <script type="application/dart;component=1" src="category.dart"></script>
40 </polymer-element> 43 </polymer-element>
OLDNEW
« no previous file with comments | « client/lib/components/category.dart ('k') | client/lib/components/closure.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698