We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b456c63 commit 320383fCopy full SHA for 320383f
GitHubA11yFixes.user.js
@@ -46,6 +46,9 @@ function onNodeAdded(target) {
46
}
47
if (["pull", "commit"].indexOf(res[1]) >= 0 && res[2] == "/") {
48
// Pull request or commit.
49
+ // Header for each changed file.
50
+ for (elem of target.querySelectorAll(".file-info"))
51
+ makeHeading(elem, 2);
52
// Lines of code which can be commented on.
53
for (elem of target.querySelectorAll(".add-line-comment")) {
54
// Put the comment button after the code instead of before.
0 commit comments