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

Side by Side Diff: client/web/variable-heading.html

Issue 149573008: Factor out the anchor prefix to easily allow switching to #! (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Fixes from review Created 6 years, 10 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/web/typedef.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="annotations.html"> 2 <link rel="import" href="annotations.html">
3 <link rel="import" href="type.html"> 3 <link rel="import" href="type.html">
4 4
5 <polymer-element name="variable-heading" attributes="item"> 5 <polymer-element name="variable-heading" attributes="item">
6 <template> 6 <template>
7 <template if="{{item.isFinal}}">final</template> 7 <template if="{{item.isFinal}}">final</template>
8 <template if="{{item.isStatic}}">static</template> 8 <template if="{{item.isStatic}}">static</template>
9 <template if="{{item.isConstant}}">const</template> 9 <template if="{{item.isConstant}}">const</template>
10 <template if="{{item.isSetter}}"> 10 <template if="{{item.isSetter}}">
11 set&nbsp; 11 set&nbsp;
12 <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b>( 12 <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b>(
13 <dartdoc-annotation annotations="{{item.setterParameter.annotations}}"> 13 <dartdoc-annotation annotations="{{item.setterParameter.annotations}}">
14 </dartdoc-annotation> 14 </dartdoc-annotation>
15 <dartdoc-type type="{{item.setterParameter.type}}"></dartdoc-type> 15 <dartdoc-type type="{{item.setterParameter.type}}"></dartdoc-type>
16 {{item.setterParameter.decoratedName}}) 16 {{item.setterParameter.decoratedName}})
17 </template> 17 </template>
18 <template if="{{isNotSetter}}"> 18 <template if="{{isNotSetter}}">
19 <dartdoc-type type="{{item.type}}"></dartdoc-type> 19 <dartdoc-type type="{{item.type}}"></dartdoc-type>
20 {{getter}} 20 {{getter}}
21 <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b> 21 <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b>
22 </template> 22 </template>
23 </template> 23 </template>
24 <script type="application/dart" src="variable-heading.dart"></script> 24 <script type="application/dart" src="variable-heading.dart"></script>
25 </polymer-element> 25 </polymer-element>
OLDNEW
« no previous file with comments | « client/web/typedef.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698