Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix aria-level in treegrid example 1 #2725

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions content/patterns/treegrid/examples/treegrid-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,32 +121,32 @@ <h2 id="ex_label">Example</h2>
<td role="gridcell">I agree with you, they are the shizzle</td>
<td role="gridcell"><a href="mailto:joe@blahblahblah.blahblah">joe@blahblahblah.blahblah</a></td>
</tr>
<tr role="row" aria-level="2" aria-posinset="2" aria-setsize="3" aria-expanded="false">
<tr role="row" aria-level="1" aria-posinset="2" aria-setsize="3" aria-expanded="false">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">They are great for showing a lot of data, like a grid</td>
<td role="gridcell"><a href="mailto:billy@dangerous.fish">billy@dangerous.fish</a></td>
</tr>
<tr role="row" aria-level="3" aria-posinset="1" aria-setsize="1" class="hidden">
<tr role="row" aria-level="2" aria-posinset="1" aria-setsize="1" class="hidden">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">Cool, we've been needing an example and documentation</td>
<td role="gridcell"><a href="mailto:doris@rufflazydogs.sleep">doris@rufflazydogs.sleep</a></td>
</tr>
<tr role="row" aria-level="2" aria-posinset="3" aria-setsize="3" aria-expanded="false">
<tr role="row" aria-level="1" aria-posinset="3" aria-setsize="3" aria-expanded="false">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">I hear the Fancytree library is going to align with this example!</td>
<td role="gridcell"><a href="mailto:someone@please-do-it.company">someone@please-do-it.company</a></td>
</tr>
<tr role="row" aria-level="3" aria-posinset="1" aria-setsize="1" aria-expanded="false" class="hidden">
<tr role="row" aria-level="2" aria-posinset="1" aria-setsize="1" aria-expanded="false" class="hidden">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">Sometimes they are more like trees, others are more like grids</td>
<td role="gridcell"><a href="mailto:mari@beingpractical.com">mari@beingpractical.com</a></td>
</tr>
<tr role="row" aria-level="4" aria-posinset="1" aria-setsize="2" class="hidden">
<tr role="row" aria-level="3" aria-posinset="1" aria-setsize="2" class="hidden">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">Cool, when it's a tree, let's keep left/right to collapse/expand</td>
<td role="gridcell"><a href="mailto:issie@imadeadcatsadly.wascute">issie@imadeadcatsadly.wascute</a></td>
</tr>
<tr role="row" aria-level="4" aria-posinset="2" aria-setsize="2" class="hidden">
<tr role="row" aria-level="3" aria-posinset="2" aria-setsize="2" class="hidden">
<td role="gridcell">re: Treegrids are awesome</td>
<td role="gridcell">I see, sometimes right arrow moves by column</td>
<td role="gridcell"><a href="mailto:kitten@kittenseason.future">kitten@kittenseason.future</a></td>
Expand Down