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

Side by Side Diff: client/lib/components/library.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/closure.html ('k') | client/lib/components/method.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 <link rel="import" href="category.html"> 1 <link rel="import" href="category.html">
2 <link rel="import" href="class.html"> 2 <link rel="import" href="class.html">
3 <link rel="import" href="comment.html"> 3 <link rel="import" href="comment.html">
4 <link rel="import" href="item.html"> 4 <link rel="import" href="item.html">
5 5
6 <polymer-element name="dartdoc-library" attributes="item"> 6 <polymer-element name="dartdoc-library" attributes="item">
7 <template> 7 <template>
8 <div class="page-header"><h1>{{item.decoratedName}} library</h1></div> 8 <div class="page-header"><h1>{{item.decoratedName}} library</h1></div>
9 9
10 <!-- Comment --> 10 <!-- Comment -->
11 <!-- TODO(alanknight): The div with itemList and panel are here to 11 <!-- TODO(alanknight): The div with itemList and panel are here to
12 convince it to use the right paragraph spacing. Seems pretty awful. --> 12 convince it to use the right paragraph spacing. Seems pretty awful. -->
13 <div id="itemList"> 13 <div id="itemList">
14 <div is="dartdoc-comment" class="panel" item="{{item}}"></div> 14 <div is="dartdoc-comment" class="panel" item="{{item}}"></div>
15 </div> 15 </div>
16 <div class="accordion" id="accordion-grouping"> 16 <div class="accordion" id="accordion-grouping">
17 <!-- Note: the implementation knows about the order of these items. --> 17 <!-- Note: the implementation knows about the order of these items. -->
18 <dartdoc-category category="{{item.operators}}" 18 <dartdoc-category category="{{item.operators}}"
19 methods="{{lazyOperators}}"></dartdoc-category> 19 methods="{{lazyOperators}}"></dartdoc-category>
20 <dartdoc-category category="{{item.variables}}" 20 <dartdoc-category category="{{item.variables}}"
21 variables="{{lazyVariables}}"></dartdoc-category> 21 variables="{{lazyVariables}}"></dartdoc-category>
22 <dartdoc-category category="{{item.functions}}" 22 <dartdoc-category category="{{item.functions}}"
23 methods="{{lazyFunctions}}"></dartdoc-category> 23 methods="{{lazyFunctions}}"></dartdoc-category>
24 <dartdoc-category category="{{item.classes}}" 24 <dartdoc-category category="{{item.classes}}"
25 items="{{lazyClasses}}"></dartdoc-category> 25 items="{{lazyClasses}}"></dartdoc-category>
26 <dartdoc-category category="{{item.typedefs}}" 26 <dartdoc-category category="{{item.typedefs}}"
27 items="{{lazyTypedefs}}"></dartdoc-category> 27 typedefs="{{lazyTypedefs}}"></dartdoc-category>
28 <dartdoc-category category="{{item.errors}}" 28 <dartdoc-category category="{{item.errors}}"
29 items="{{lazyErrors}}"></dartdoc-category> 29 items="{{lazyErrors}}"></dartdoc-category>
30 </div> 30 </div>
31 </template> 31 </template>
32 32
33 <script type="application/dart;component=1" src="library.dart"></script> 33 <script type="application/dart;component=1" src="library.dart"></script>
34 </polymer-element> 34 </polymer-element>
OLDNEW
« no previous file with comments | « client/lib/components/closure.html ('k') | client/lib/components/method.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698