Skip to content

Commit b1219af

Browse files
authored
Merge pull request #86 from w3c/jnurthen/issue85
2 parents d3c76b2 + e8ea281 commit b1219af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

script/utility.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ function addPlatformMaintainers() {
99
if (node.textContent.trim() == "Authors:") node.textContent = "Platform Mapping Maintainers:";
1010
})
1111
}
12+
function fixContributors() {
13+
document.querySelectorAll("#gh-contributors li a").forEach(function(node){
14+
if (node.textContent.indexOf("[bot]") > 0) node.parentElement.parentElement.removeChild(node.parentElement);
15+
})
16+
}

0 commit comments

Comments
 (0)