Commit 9391f4de authored by Chris Rebert's avatar Chris Rebert

Merge pull request #9398 from twbs/minor-docs-fix

fix ID of <select> in fieldset[disabled] example
parents c558c035 1c64c8f4
......@@ -1699,7 +1699,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<input type="text" id="disabledInput" class="form-control" placeholder="Disabled input">
</div>
<div class="form-group">
<label for="disabledInput">Disabled select menu</label>
<label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control">
<option>Disabled select</option>
</select>
......@@ -1720,7 +1720,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<input type="text" id="disabledInput" class="form-control" placeholder="Disabled input">
</div>
<div class="form-group">
<label for="disabledInput">Disabled select menu</label>
<label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control">
<option>Disabled select</option>
</select>
......
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