Skip to content

Commit

Permalink
Merge pull request #184 from PolymerElements/idv-183
Browse files Browse the repository at this point in the history
Fix #183, add anchors for top-level exports.
  • Loading branch information
Arthur Evans authored May 8, 2018
2 parents 3245d82 + eba0e6c commit a62b00d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions iron-doc-module.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2>
<template is="dom-repeat" items="[[descriptor.elements]]" sort="_compareDescriptors">
<iron-doc-element
descriptor="[[item]]"
anchor-id="[[fragmentPrefix]][[item.name]]"
anchor-id$="[[fragmentPrefix]][[item.name]]"
fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-element>
</template>
Expand All @@ -66,7 +66,7 @@ <h2>
<template is="dom-repeat" items="[[descriptor.classes]]" sort="_compareDescriptors">
<iron-doc-class
descriptor="{{item}}"
anchor-id="[[fragmentPrefix]][[item.name]]"
anchor-id$="[[fragmentPrefix]][[item.name]]"
fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-summary>
</template>
Expand All @@ -77,7 +77,7 @@ <h2>
<template is="dom-repeat" items="[[descriptor.mixins]]" sort="_compareDescriptors">
<iron-doc-mixin
descriptor="[[item]]"
anchor-id="[[fragmentPrefix]][[item.name]]"
anchor-id$="[[fragmentPrefix]][[item.name]]"
fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-mixin>
</template>
Expand All @@ -88,7 +88,7 @@ <h2>
<template is="dom-repeat" items="[[_getPolymerBehaviors(descriptor)]]" sort="_compareDescriptors">
<iron-doc-behavior
descriptor="[[item]]"
anchor-id="[[fragmentPrefix]][[item.name]]"
anchor-id$="[[fragmentPrefix]][[item.name]]"
fragment-prefix="[[fragmentPrefix]][[item.name]]-">
</iron-doc-summary>
</template>
Expand All @@ -103,7 +103,7 @@ <h2>
</h2>
<template is="dom-repeat" items="[[descriptor.functions]]" sort="_compareDescriptors">
<iron-doc-function
anchor-id="[[fragmentPrefix]][[item.name]]"
anchor-id$="[[fragmentPrefix]][[item.name]]"
descriptor="[[item]]">
</iron-doc-function>
</template>
Expand Down

0 comments on commit a62b00d

Please sign in to comment.