Skip to content

Commit

Permalink
Make main segmented button keyboard-focusable
Browse files Browse the repository at this point in the history
unless there's a reason why ``tabindex="-1"`` was dropped in there...
  • Loading branch information
patrickhlauke committed Dec 8, 2014
1 parent 24bc102 commit 285ec70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_includes/components/input-groups.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ <h2 id="input-groups-buttons-segmented">Segmented buttons</h2>
<div class="col-lg-6">
<div class="input-group">
<div class="input-group-btn">
<button type="button" class="btn btn-default" tabindex="-1">Action</button>
<button type="button" class="btn btn-default">Action</button>
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
Expand All @@ -281,7 +281,7 @@ <h2 id="input-groups-buttons-segmented">Segmented buttons</h2>
<div class="input-group">
<input type="text" class="form-control" aria-label="Text input with segmented button dropdown">
<div class="input-group-btn">
<button type="button" class="btn btn-default" tabindex="-1">Action</button>
<button type="button" class="btn btn-default">Action</button>
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<span class="caret"></span>
<span class="sr-only">Toggle Dropdown</span>
Expand Down

0 comments on commit 285ec70

Please sign in to comment.