We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a842a2e commit 12ee080Copy full SHA for 12ee080
common/common.js
@@ -83,9 +83,9 @@ require(["core/pubsubhub"], (respecEvents) => {
83
// now termsReferencedByTerms has ALL terms that
84
// reference other terms, and a list of the
85
// terms that they reference
86
- const internalRefs = document.querySelectorAll("a.internalDFN");
+ const internalRefs = document.querySelectorAll("a[data-link-type='dfn']");
87
for (const item of internalRefs) {
88
- const idref = item.getAttribute('href').replace(/^#/,"") ;
+ const idref = item.getAttribute('href').replace(/^.*#/,"") ;
89
// if the item is outside the term list
90
if (!item.closest('dl.termlist')) {
91
clearRefs(idref);
0 commit comments