Commit d8d95437 authored by Chris Rebert's avatar Chris Rebert

Merge pull request #14113 from vsn4ik/add-attributes-for-dropdown-example

dropdowns.html: Add role="button" and id="..." to link in example.
parents 2a5e9cb2 816c8f48
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
<p>Add <code>data-toggle="dropdown"</code> to a link or button to toggle a dropdown.</p> <p>Add <code>data-toggle="dropdown"</code> to a link or button to toggle a dropdown.</p>
{% highlight html %} {% highlight html %}
<div class="dropdown"> <div class="dropdown">
<a data-toggle="dropdown" href="#">Dropdown trigger</a> <a id="dLabel" role="button" data-toggle="dropdown" href="#">Dropdown trigger</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
... ...
</ul> </ul>
...@@ -117,7 +117,6 @@ ...@@ -117,7 +117,6 @@
Dropdown <span class="caret"></span> Dropdown <span class="caret"></span>
</a> </a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
... ...
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment