Skip to content

Commit

Permalink
docs: add note for #105
Browse files Browse the repository at this point in the history
  • Loading branch information
pkra committed Dec 10, 2023
1 parent 9f38710 commit dbcf2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/aria.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function ariaAttributeReferences() {
// is this a role or an abstract role
let type = "role";
let isAbstract = false;
const abstract = container.querySelectorAll(".role-abstract");
const abstract = container.querySelectorAll(".role-abstract");//TODO: maybe #105

Check failure on line 241 in script/aria.js

View workflow job for this annotation

GitHub Actions / lint-js

Insert `·`

Check failure on line 241 in script/aria.js

View workflow job for this annotation

GitHub Actions / lint-js

Insert `·`
if (abstract.innerText === "True") {
type = "abstract role";
isAbstract = true;
Expand Down

0 comments on commit dbcf2d5

Please sign in to comment.