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

updated button example per #189 issue #209

Merged
merged 9 commits into from
Dec 12, 2016
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions examples/button/button.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ <h1>Button Examples</h1>

<p>
Creating Buttons using <code>role=button</code> following the <a href="../../#h-button">Button Design Patten</a>.
The following examples are composed using a <code>div</code> and <code>span</code> elements
functioning as a native <code>button</code> element, and an <code>a</code> element that functions as a
The following examples are composed using a <code>div</code> and <code>a</code> elements
functioning as a native <code>button</code> element, and an <code>span</code> element that functions as a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please change to
and a <code>span</code> element

toggle button.
</p>

Expand Down Expand Up @@ -191,7 +191,7 @@ <h2 id="rps_label">ARIA Roles, Properties and States</h2>
<tr>
<td></td>
<th scope="row"><code>aria-pressed=&quot;false&quot;</code></th>
<td><code>a</code></td>
<td><code>span</code></td>
<td>
<ul>
<li>Identify element with the toggle button behavior and toggled off</li>
Expand All @@ -201,7 +201,7 @@ <h2 id="rps_label">ARIA Roles, Properties and States</h2>
<tr>
<td></td>
<th scope="row"><code>aria-pressed=&quot;true&quot;</code></th>
<td><code>a</code></td>
<td><code>span</code></td>
<td>
<ul>
<li>Identify element with the toggle button behavior and toggled on</li>
Expand Down