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. ...@@ -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"> <input type="text" id="disabledInput" class="form-control" placeholder="Disabled input">
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="disabledInput">Disabled select menu</label> <label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control"> <select id="disabledSelect" class="form-control">
<option>Disabled select</option> <option>Disabled select</option>
</select> </select>
...@@ -1720,7 +1720,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -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"> <input type="text" id="disabledInput" class="form-control" placeholder="Disabled input">
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="disabledInput">Disabled select menu</label> <label for="disabledSelect">Disabled select menu</label>
<select id="disabledSelect" class="form-control"> <select id="disabledSelect" class="form-control">
<option>Disabled select</option> <option>Disabled select</option>
</select> </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