Skip to content

Commit

Permalink
swap understanding and quickref
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-n-cooper committed May 16, 2018
1 parent f0bd41d commit 8c625f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/wcag21.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function linkUnderstanding() {
var pathFrag = titleToPathFrag(heading);
var el = document.createElement("div");
el.setAttribute("class", "doclinks");
el.innerHTML = "<a href=\"https://www.w3.org/WAI/WCAG21/quickref/#" + pathFrag + "\">How to Meet " + heading + "</a> <span class=\"screenreader\">|</span> <br /><a href=\"" + understandingBaseURI + pathFrag + ".html\">Understanding " + heading + "</a>";
el.innerHTML = "<a href=\"" + understandingBaseURI + pathFrag + ".html\">Understanding " + heading + "</a> <span class=\"screenreader\">|</span> <br /><a href=\"https://www.w3.org/WAI/WCAG21/quickref/#" + pathFrag + "\">How to Meet " + heading + "</a>";
node.insertBefore(el, node.children[1]);
})
}
Expand Down

0 comments on commit 8c625f4

Please sign in to comment.