diff options
| author | Chris Rebert <[email protected]> | 2014-10-28 16:10:41 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-10-28 16:10:43 -0700 |
| commit | d87a636ff9f4febd9a09ed98dce35cecc4c9a43f (patch) | |
| tree | 4d5dd3c8bb53ac7072ccf9b2cd7953950e572ea7 | |
| parent | 3eec86e2e5a2ea835f929eb3fa31e32f51ca6216 (diff) | |
| download | bootstrap-d87a636ff9f4febd9a09ed98dce35cecc4c9a43f.tar.xz bootstrap-d87a636ff9f4febd9a09ed98dce35cecc4c9a43f.zip | |
add missing href="#" to .btn-group-justified example
[skip sauce]
| -rw-r--r-- | docs/_includes/components/button-groups.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/_includes/components/button-groups.html b/docs/_includes/components/button-groups.html index 018d66ed5..216e4426b 100644 --- a/docs/_includes/components/button-groups.html +++ b/docs/_includes/components/button-groups.html @@ -202,16 +202,16 @@ <p>Just wrap a series of <code>.btn</code>s in <code>.btn-group.btn-group-justified</code>.</p> <div class="bs-example"> <div class="btn-group btn-group-justified"> - <a class="btn btn-default" role="button">Left</a> - <a class="btn btn-default" role="button">Middle</a> - <a class="btn btn-default" role="button">Right</a> + <a href="#" class="btn btn-default" role="button">Left</a> + <a href="#" class="btn btn-default" role="button">Middle</a> + <a href="#" class="btn btn-default" role="button">Right</a> </div> <br> <div class="btn-group btn-group-justified"> - <a class="btn btn-default" role="button">Left</a> - <a class="btn btn-default" role="button">Middle</a> + <a href="#" class="btn btn-default" role="button">Left</a> + <a href="#" class="btn btn-default" role="button">Middle</a> <div class="btn-group"> - <a class="btn btn-default dropdown-toggle" data-toggle="dropdown"> + <a href="#" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Dropdown <span class="caret"></span> </a> <ul class="dropdown-menu" role="menu"> |
