Skip to content

Commit

Permalink
Commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-montalvo authored and github-actions[bot] committed Jul 31, 2024
1 parent 2f061a9 commit 3e4a870
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ARIA/apg/patterns/grid/examples/data-grids.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permalink: /ARIA/apg/patterns/grid/examples/data-grids/

sidebar: true

footer: " <div class='example-page-footer'> <p><a href='https://github.com/w3c/aria-practices/projects/15'>View issues related to this example</a></p> <p>Page last updated: 27 July 2024</p> </div> "
footer: " <div class='example-page-footer'> <p><a href='https://github.com/w3c/aria-practices/projects/15'>View issues related to this example</a></p> <p>Page last updated: 31 July 2024</p> </div> "

# Context here: https://github.com/w3c/wai-aria-practices/issues/31
type_of_guidance: APG
Expand Down
2 changes: 1 addition & 1 deletion ARIA/apg/patterns/grid/examples/layout-grids.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permalink: /ARIA/apg/patterns/grid/examples/layout-grids/

sidebar: true

footer: " <div class='example-page-footer'> <p><a href='https://github.com/w3c/aria-practices/projects/15'>View issues related to this example</a></p> <p>Page last updated: 27 July 2024</p> </div> "
footer: " <div class='example-page-footer'> <p><a href='https://github.com/w3c/aria-practices/projects/15'>View issues related to this example</a></p> <p>Page last updated: 31 July 2024</p> </div> "

# Context here: https://github.com/w3c/wai-aria-practices/issues/31
type_of_guidance: APG
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,10 @@ aria.Grid.prototype.isValidCell = function (row, col) {
* Returns whether or not the cell has been hidden.
*/
aria.Grid.prototype.isHidden = function (row, col) {
// prettier-ignore
var cell = this.gridNode
.querySelectorAll(aria.GridSelector.ROW)
[row].querySelectorAll(aria.GridSelector.CELL)[col];
.querySelectorAll(aria.GridSelector.ROW)[row]
.querySelectorAll(aria.GridSelector.CELL)[col];
return aria.Utils.hasClass(cell, aria.CSSClass.HIDDEN);
};

Expand Down

0 comments on commit 3e4a870

Please sign in to comment.