aboutsummaryrefslogtreecommitdiff
path: root/docs/_includes
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-07-13 00:08:25 -0700
committerMark Otto <[email protected]>2014-07-13 00:08:25 -0700
commit2c540b7e330eb2e8ecedfd7d62fb603f96ee39db (patch)
tree7195e48cdb26db4c26ba92aa5bb43ff290c87b24 /docs/_includes
parentcd7250d6a8f2144c7cfa2103713b4a19ddb2ea90 (diff)
downloadbootstrap-2c540b7e330eb2e8ecedfd7d62fb603f96ee39db.tar.xz
bootstrap-2c540b7e330eb2e8ecedfd7d62fb603f96ee39db.zip
typos
Diffstat (limited to 'docs/_includes')
-rw-r--r--docs/_includes/js/dropdowns.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/_includes/js/dropdowns.html b/docs/_includes/js/dropdowns.html
index 6311f04eb..2cbbf85e1 100644
--- a/docs/_includes/js/dropdowns.html
+++ b/docs/_includes/js/dropdowns.html
@@ -131,13 +131,13 @@
</ul>
</div>
{% endhighlight %}
- <p>To keep URLs intact, use the <code>data-target</code> attribute instead of <code>href="#"</code>.</p>
+ <p>To keep URLs intact with link buttons, use the <code>data-target</code> attribute instead of <code>href="#"</code>.</p>
{% highlight html %}
<div class="dropdown">
- <button id="dLabel" type="button" data-toggle="dropdown">Dropdown trigger</button>
- Dropdown
+ <a id="dLabel" data-target="#" href="http://example.com" type="button" data-toggle="dropdown">
+ Dropdown trigger
<span class="caret"></span>
- </button>
+ </a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
...