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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/web/typedef.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/web/variable-heading.html
diff --git a/client/web/variable-heading.html b/client/web/variable-heading.html
index 22e1341501925992baec406a964ec9e7a9ca0670..456ce80fdfeb8e238b03de39dc8089a19693c1ae 100644
--- a/client/web/variable-heading.html
+++ b/client/web/variable-heading.html
@@ -9,7 +9,7 @@
<template if="{{item.isConstant}}">const</template>
<template if="{{item.isSetter}}">
set&nbsp;
- <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b>(
+ <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b>(
<dartdoc-annotation annotations="{{item.setterParameter.annotations}}">
</dartdoc-annotation>
<dartdoc-type type="{{item.setterParameter.type}}"></dartdoc-type>
@@ -18,7 +18,7 @@
<template if="{{isNotSetter}}">
<dartdoc-type type="{{item.type}}"></dartdoc-type>
{{getter}}
- <b><a id="{{idName}}" href="#{{item.anchorHref}}">{{name}}</a></b>
+ <b><a id="{{idName}}" href="{{item.prefixedAnchorHref}}">{{name}}</a></b>
</template>
</template>
<script type="application/dart" src="variable-heading.dart"></script>
« 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